copyWith method

StarTransactionTypeUserDeposit copyWith({
  1. int? userId,
  2. Sticker? sticker,
})

Implementation

StarTransactionTypeUserDeposit copyWith({int? userId, Sticker? sticker}) =>
    StarTransactionTypeUserDeposit(
      userId: userId ?? this.userId,
      sticker: sticker ?? this.sticker,
    );