toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final entityType = this.entityType;
  final formattedValue = this.formattedValue;
  final text = this.text;
  return {
    'entityType': ?entityType,
    'formattedValue': ?formattedValue,
    'text': ?text,
  };
}