copyWith method

InternalLinkTypeStickerSet copyWith({
  1. String? stickerSetName,
  2. bool? expectCustomEmoji,
})

Implementation

InternalLinkTypeStickerSet copyWith({
  String? stickerSetName,
  bool? expectCustomEmoji,
}) => InternalLinkTypeStickerSet(
  stickerSetName: stickerSetName ?? this.stickerSetName,
  expectCustomEmoji: expectCustomEmoji ?? this.expectCustomEmoji,
);