copyWith method

MarkdownFlutterContentGeneralFramework copyWith({
  1. String? title,
  2. String? content,
  3. String? languageCodeId,
})

UncompleteDocumentation

Implementation

MarkdownFlutterContentGeneralFramework copyWith({
  String? title,
  String? content,
  String? languageCodeId,
}) {
  return MarkdownFlutterContentGeneralFramework(
    title: title ?? this.title,
    content: content ?? this.content,
    languageCodeId: languageCodeId ?? this.languageCodeId,
  );
}