class ModuleTitle { String? text; ModuleTitle({this.text}); factory ModuleTitle.fromJson(Map json) => ModuleTitle( text: json['text'] as String?, ); Map toJson() => { 'text': text, }; }