toJson method

Map<String, dynamic> toJson()

Implementation

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