AuthenticationKey.fromJson constructor

AuthenticationKey.fromJson(
  1. Map json_
)

Implementation

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