copyWith method

SetStickerPositionInSet copyWith({
  1. InputFile? sticker,
  2. int? position,
})

Implementation

SetStickerPositionInSet copyWith({
  InputFile? sticker,
  int? position,
}) =>
    SetStickerPositionInSet(
      sticker: sticker ?? this.sticker,
      position: position ?? this.position,
    );