copyWith method
Input$UpdateEnterpriseAdministratorRoleInput
copyWith({
- String? clientMutationId()?,
- String? enterpriseId,
- String? login,
- 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);