copyWith method

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

Implementation

ItemApplicationScopesUpdateRequest copyWith(
    {String? clientId,
    String? secret,
    String? accessToken,
    String? applicationId,
    Scopes? scopes}) {
  return ItemApplicationScopesUpdateRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      accessToken: accessToken ?? this.accessToken,
      applicationId: applicationId ?? this.applicationId,
      scopes: scopes ?? this.scopes);
}