v1GetWalletRequest.fromJson constructor
Implementation
factory v1GetWalletRequest.fromJson(Map<String, dynamic> json) {
final _organizationId = json['organizationId'] as String;
final _walletId = json['walletId'] as String;
return v1GetWalletRequest(
organizationId: _organizationId,
walletId: _walletId,
);
}