AuthenticationKey.fromJson constructor

AuthenticationKey.fromJson(
  1. Map json_
)

Implementation

AuthenticationKey.fromJson(core.Map json_)
    : this(
        id: json_.containsKey('id') ? json_['id'] as core.int : null,
        publicKeyPem: json_.containsKey('publicKeyPem')
            ? json_['publicKeyPem'] as core.String
            : null,
      );