M4eWalletInfo.fromJson constructor
Implementation
factory M4eWalletInfo.fromJson(Map<String, dynamic> json) {
return M4eWalletInfo(
label: json['label'],
currency: M4eCurrencyType.parse(json['currency']),
type: M4eWalletType.parse(json['type']),
);
}