copyWith method
GetReceivedGifts
copyWith({
- String? businessConnectionId,
- MessageSender? ownerId,
- int? collectionId,
- bool? excludeUnsaved,
- bool? excludeSaved,
- bool? excludeUnlimited,
- bool? excludeUpgradable,
- bool? excludeNonUpgradable,
- bool? excludeUpgraded,
- bool? excludeWithoutColors,
- bool? excludeHosted,
- bool? sortByPrice,
- String? offset,
- int? limit,
Implementation
GetReceivedGifts copyWith({
String? businessConnectionId,
MessageSender? ownerId,
int? collectionId,
bool? excludeUnsaved,
bool? excludeSaved,
bool? excludeUnlimited,
bool? excludeUpgradable,
bool? excludeNonUpgradable,
bool? excludeUpgraded,
bool? excludeWithoutColors,
bool? excludeHosted,
bool? sortByPrice,
String? offset,
int? limit,
}) => GetReceivedGifts(
businessConnectionId: businessConnectionId ?? this.businessConnectionId,
ownerId: ownerId ?? this.ownerId,
collectionId: collectionId ?? this.collectionId,
excludeUnsaved: excludeUnsaved ?? this.excludeUnsaved,
excludeSaved: excludeSaved ?? this.excludeSaved,
excludeUnlimited: excludeUnlimited ?? this.excludeUnlimited,
excludeUpgradable: excludeUpgradable ?? this.excludeUpgradable,
excludeNonUpgradable: excludeNonUpgradable ?? this.excludeNonUpgradable,
excludeUpgraded: excludeUpgraded ?? this.excludeUpgraded,
excludeWithoutColors: excludeWithoutColors ?? this.excludeWithoutColors,
excludeHosted: excludeHosted ?? this.excludeHosted,
sortByPrice: sortByPrice ?? this.sortByPrice,
offset: offset ?? this.offset,
limit: limit ?? this.limit,
);