v1ExportWalletAccountIntent.fromJson constructor

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

Implementation

factory v1ExportWalletAccountIntent.fromJson(Map<String, dynamic> json) {
  final _address = json['address'] as String;
  final _targetPublicKey = json['targetPublicKey'] as String;
  return v1ExportWalletAccountIntent(
    address: _address,
    targetPublicKey: _targetPublicKey,
  );
}