copyWith method

ItemApplicationScopesUpdateRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? accessToken,
  4. String? applicationId,
  5. Scopes? scopes,
  6. String? state,
  7. ScopesContext? context,
})

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);
}