copyWith method
GiftsForResale
copyWith({
- int? totalCount,
- List<
GiftForResale> ? gifts, - List<
UpgradedGiftModelCount> ? models, - List<
UpgradedGiftSymbolCount> ? symbols, - List<
UpgradedGiftBackdropCount> ? backdrops, - String? nextOffset,
Implementation
GiftsForResale copyWith({
int? totalCount,
List<GiftForResale>? gifts,
List<UpgradedGiftModelCount>? models,
List<UpgradedGiftSymbolCount>? symbols,
List<UpgradedGiftBackdropCount>? backdrops,
String? nextOffset,
}) => GiftsForResale(
totalCount: totalCount ?? this.totalCount,
gifts: gifts ?? this.gifts,
models: models ?? this.models,
symbols: symbols ?? this.symbols,
backdrops: backdrops ?? this.backdrops,
nextOffset: nextOffset ?? this.nextOffset,
);