copyWith method
Implementation
ItemApplicationScopesUpdateRequest copyWith(
{String? clientId,
String? secret,
String? accessToken,
String? applicationId,
Scopes? scopes,
String? state,
enums.ScopesContext? context}) {
return ItemApplicationScopesUpdateRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
accessToken: accessToken ?? this.accessToken,
applicationId: applicationId ?? this.applicationId,
scopes: scopes ?? this.scopes,
state: state ?? this.state,
context: context ?? this.context);
}