v1GetWalletAccountRequest.fromJson constructor
v1GetWalletAccountRequest.fromJson(
- Map<String, dynamic> json
)
Implementation
factory v1GetWalletAccountRequest.fromJson(Map<String, dynamic> json) {
final _organizationId = json['organizationId'] as String;
final _walletId = json['walletId'] as String;
final _address = json['address'] as String?;
final _path = json['path'] as String?;
return v1GetWalletAccountRequest(
organizationId: _organizationId,
walletId: _walletId,
address: _address,
path: _path,
);
}