v1GetPrivateKeyResponse.fromJson constructor

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

Implementation

factory v1GetPrivateKeyResponse.fromJson(Map<String, dynamic> json) {
  final _privateKey = v1PrivateKey.fromJson(json['privateKey'] as Map<String, dynamic>);
  return v1GetPrivateKeyResponse(
    privateKey: _privateKey,
  );
}