copyWith method

UpdateOwnedGramCount copyWith({
  1. int? gramAmount,
})

Implementation

UpdateOwnedGramCount copyWith({int? gramAmount}) =>
    UpdateOwnedGramCount(gramAmount: gramAmount ?? this.gramAmount);