copyWith method

GeneralLibraryLogOptions copyWith({
  1. String? textTitle,
  2. String? textContext,
})

GeneralLibraryLog

Implementation

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