v1ExportWalletAccountIntent.fromJson constructor
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,
);
}