TGetPrivateKeyResponse.fromJson constructor

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

Implementation

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