copyWith method

SuggestedPostPriceGram copyWith({
  1. int? gramCentCount,
})

Implementation

SuggestedPostPriceGram copyWith({int? gramCentCount}) =>
    SuggestedPostPriceGram(
      gramCentCount: gramCentCount ?? this.gramCentCount,
    );