CreateServiceAccountRequest.fromJson constructor

CreateServiceAccountRequest.fromJson(
  1. Map json_
)

Implementation

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