v1UpdateWalletIntent.fromJson constructor
Implementation
factory v1UpdateWalletIntent.fromJson(Map<String, dynamic> json) {
final _walletId = json['walletId'] as String;
final _walletName = json['walletName'] as String?;
return v1UpdateWalletIntent(
walletId: _walletId,
walletName: _walletName,
);
}