PatchServiceAccountKeyRequest.fromJson constructor

PatchServiceAccountKeyRequest.fromJson(
  1. Map json_
)

Implementation

PatchServiceAccountKeyRequest.fromJson(core.Map json_)
    : this(
        serviceAccountKey: json_.containsKey('serviceAccountKey')
            ? ServiceAccountKey.fromJson(json_['serviceAccountKey']
                as core.Map<core.String, core.dynamic>)
            : null,
        updateMask: json_.containsKey('updateMask')
            ? json_['updateMask'] as core.String
            : null,
      );