copyWith method
Implementation
GiftResaleParameters copyWith({
int? starCount,
int? gramCentCount,
bool? gramOnly,
}) => GiftResaleParameters(
starCount: starCount ?? this.starCount,
gramCentCount: gramCentCount ?? this.gramCentCount,
gramOnly: gramOnly ?? this.gramOnly,
);