copyWith method

TonTransactionTypeFragmentDeposit copyWith({
  1. bool? isGift,
  2. Sticker? sticker,
})

Implementation

TonTransactionTypeFragmentDeposit copyWith({
  bool? isGift,
  Sticker? sticker,
}) => TonTransactionTypeFragmentDeposit(
  isGift: isGift ?? this.isGift,
  sticker: sticker ?? this.sticker,
);