copyWith method

RemoveRecentSticker copyWith({
  1. bool? isAttached,
  2. InputFile? sticker,
})

Implementation

RemoveRecentSticker copyWith({bool? isAttached, InputFile? sticker}) =>
    RemoveRecentSticker(
      isAttached: isAttached ?? this.isAttached,
      sticker: sticker ?? this.sticker,
    );