M4eWalletInfo.fromJson constructor

M4eWalletInfo.fromJson(Map<String, dynamic> json)

Implementation

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