factory Option.fromJson(Map<String, dynamic> json) { return Option( text: json['text'] as String? ?? 'defaultText', ); }