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.
18 lines
397 B
18 lines
397 B
1 year ago
|
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;
|
||
|
}
|
||
|
|
||
|
}
|