copyWith method

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

Implementation

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