$Symptom.fromJson constructor

$Symptom.fromJson(
  1. Map json_
)

Implementation

$Symptom.fromJson(core.Map json_)
  : this(
      createTime: json_['createTime'] as core.String?,
      details: json_['details'] as core.String?,
      symptomType: json_['symptomType'] as core.String?,
      workerId: json_['workerId'] as core.String?,
    );