CreateServiceAccountKeyRequest.fromJson constructor

CreateServiceAccountKeyRequest.fromJson(
  1. Map json_
)

Implementation

CreateServiceAccountKeyRequest.fromJson(core.Map json_)
    : this(
        keyAlgorithm: json_.containsKey('keyAlgorithm')
            ? json_['keyAlgorithm'] as core.String
            : null,
        privateKeyType: json_.containsKey('privateKeyType')
            ? json_['privateKeyType'] as core.String
            : null,
      );