toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
    json[r'short'] = this.short;
    json[r'title'] = this.title;
    json[r'value'] = this.value;
  return json;
}