TGetWalletAccountBody.fromJson constructor

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

Implementation

factory TGetWalletAccountBody.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 TGetWalletAccountBody(
    organizationId: _organizationId,
    walletId: _walletId,
    address: _address,
    path: _path,
  );
}