copyWith method
Implementation
ItemRemoveRequest copyWith(
{String? clientId, String? secret, String? accessToken}) {
return ItemRemoveRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
accessToken: accessToken ?? this.accessToken);
}