copyWith method
GeneralLibraryLog
Implementation
GeneralLibraryLogOptions copyWith({
final String? textTitle,
final String? textContext,
}) {
return GeneralLibraryLogOptions(
textTitle: textTitle ?? this.textTitle,
textContext: textContext ?? this.textContext,
);
}