copyWith method
Implementation
MessageGiftedTon copyWith({
int? gifterUserId,
int? receiverUserId,
int? gramAmount,
String? transactionId,
Sticker? sticker,
}) => MessageGiftedTon(
gifterUserId: gifterUserId ?? this.gifterUserId,
receiverUserId: receiverUserId ?? this.receiverUserId,
gramAmount: gramAmount ?? this.gramAmount,
transactionId: transactionId ?? this.transactionId,
sticker: sticker ?? this.sticker,
);