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