v1GetWalletRequest.fromJson constructor

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

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