copyWith method

UpgradedGiftModelCount copyWith({
  1. UpgradedGiftModel? model,
  2. int? totalCount,
})

Implementation

UpgradedGiftModelCount copyWith({
  UpgradedGiftModel? model,
  int? totalCount,
}) => UpgradedGiftModelCount(
  model: model ?? this.model,
  totalCount: totalCount ?? this.totalCount,
);