toJson method

Map<String, dynamic> toJson()

Implementation

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