You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
healthcare-frontend/lib/models/dynamic_code_model.dart

18 lines
397 B

class DynamicCodeModel {
String doctorId = '';
String dynamicCode = '';
String recordId = '';
DynamicCodeModel();
factory DynamicCodeModel.fromJson(Map<String, dynamic> json){
DynamicCodeModel rtvm = new DynamicCodeModel();
rtvm.doctorId = json['doctorId'] ?? '';
rtvm.dynamicCode= json['dynamicCode']??'';
rtvm.recordId= json['recordId']??'';
return rtvm;
}
}