GetParametersForImportResponse.fromJson constructor

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

Implementation

factory GetParametersForImportResponse.fromJson(Map<String, dynamic> json) {
  return GetParametersForImportResponse(
    importToken: _s.decodeNullableUint8List(json['ImportToken'] as String?),
    keyId: json['KeyId'] as String?,
    parametersValidTo: timeStampFromJson(json['ParametersValidTo']),
    publicKey: _s.decodeNullableUint8List(json['PublicKey'] as String?),
  );
}