toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final details = this.details;
  final symptomType = this.symptomType;
  final workerId = this.workerId;
  return {
    'createTime': ?createTime,
    'details': ?details,
    'symptomType': ?symptomType,
    'workerId': ?workerId,
  };
}