PatchServiceAccountRequest.fromJson constructor

PatchServiceAccountRequest.fromJson(
  1. Map json_
)

Implementation

PatchServiceAccountRequest.fromJson(core.Map json_)
    : this(
        serviceAccount: json_.containsKey('serviceAccount')
            ? ServiceAccount.fromJson(json_['serviceAccount']
                as core.Map<core.String, core.dynamic>)
            : null,
        updateMask: json_.containsKey('updateMask')
            ? json_['updateMask'] as core.String
            : null,
      );