IMobileMoneyPhoneCode.fromJson constructor
Implementation
factory IMobileMoneyPhoneCode.fromJson(Map<String, dynamic> json) {
return IMobileMoneyPhoneCode(
label: json.containsKey('label') ? json['label'] : '-',
value: json.containsKey('value') ? json['value'] : '-',
);
}