copyWith method

  1. @override
InternalLinkTypeStickerSet copyWith({
  1. String? stickerSetName,
  2. bool? expectCustomEmoji,
  3. dynamic extra,
  4. int? clientId,
})
override

Implementation

@override
InternalLinkTypeStickerSet copyWith({
  String? stickerSetName,
  bool? expectCustomEmoji,
  dynamic extra,
  int? clientId,
}) =>
    InternalLinkTypeStickerSet(
      stickerSetName: stickerSetName ?? this.stickerSetName,
      expectCustomEmoji: expectCustomEmoji ?? this.expectCustomEmoji,
      extra: extra ?? this.extra,
      clientId: clientId ?? this.clientId,
    );