copyWith method

Input$UpdateEnterpriseAdministratorRoleInput copyWith({
  1. String? clientMutationId()?,
  2. String? enterpriseId,
  3. String? login,
  4. Enum$EnterpriseAdministratorRole? role,
})

Implementation

Input$UpdateEnterpriseAdministratorRoleInput copyWith(
        {String? Function()? clientMutationId,
        String? enterpriseId,
        String? login,
        Enum$EnterpriseAdministratorRole? role}) =>
    Input$UpdateEnterpriseAdministratorRoleInput(
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        enterpriseId: enterpriseId == null ? this.enterpriseId : enterpriseId,
        login: login == null ? this.login : login,
        role: role == null ? this.role : role);