copyWith method

  1. @override
PushMessageContentSticker copyWith({
  1. Sticker? sticker,
  2. String? emoji,
  3. bool? isPinned,
})
override

Implementation

@override
PushMessageContentSticker copyWith({
  Sticker? sticker,
  String? emoji,
  bool? isPinned,
}) => PushMessageContentSticker(
  sticker: sticker ?? this.sticker,
  emoji: emoji ?? this.emoji,
  isPinned: isPinned ?? this.isPinned,
);