ServerCredential.fromJson constructor

ServerCredential.fromJson(
  1. Map json_
)

Implementation

ServerCredential.fromJson(core.Map json_)
  : this(
      asymmetricAlgorithm: json_['asymmetricAlgorithm'] as core.String?,
      fingerprint: json_['fingerprint'] as core.String?,
    );