v1UpdateWalletIntent.fromJson constructor

v1UpdateWalletIntent.fromJson(
  1. Map<String, dynamic> json
)

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,
  );
}