TExportWalletAccountBody.fromJson constructor

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

Implementation

factory TExportWalletAccountBody.fromJson(Map<String, dynamic> json) {
  final _timestampMs = json['timestampMs'] as String?;
  final _organizationId = json['organizationId'] as String?;
  final _address = json['address'] as String;
  final _targetPublicKey = json['targetPublicKey'] as String;
  return TExportWalletAccountBody(
    timestampMs: _timestampMs,
    organizationId: _organizationId,
    address: _address,
    targetPublicKey: _targetPublicKey,
  );
}