copyWith method
Implementation
GiftPurchaseLimits copyWith({int? totalCount, int? remainingCount}) =>
GiftPurchaseLimits(
totalCount: totalCount ?? this.totalCount,
remainingCount: remainingCount ?? this.remainingCount,
);
GiftPurchaseLimits copyWith({int? totalCount, int? remainingCount}) =>
GiftPurchaseLimits(
totalCount: totalCount ?? this.totalCount,
remainingCount: remainingCount ?? this.remainingCount,
);