toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (language != null) 'language': language!,
  if (sentences != null) 'sentences': sentences!,
  if (tokens != null) 'tokens': tokens!,
};