toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (languageCode != null) 'languageCode': languageCode!,
      if (longText != null) 'longText': longText!,
      if (shortText != null) 'shortText': shortText!,
      if (types != null) 'types': types!,
    };