M4eWallet.fromJson constructor

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

Implementation

factory M4eWallet.fromJson(Map<String, dynamic> json) {
  return M4eWallet(
    id: M4eUniqueId.fromUniqueString(json['id']),
    walletInfo: M4eWalletInfo.fromJson(json['wallet']),
  );
}