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