copyWith method

GiftResaleParameters copyWith({
  1. int? starCount,
  2. int? gramCentCount,
  3. bool? gramOnly,
})

Implementation

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