copyWith method

  1. @override
UpdateRecentStickers copyWith({
  1. bool? isAttached,
  2. List<int>? stickerIds,
  3. dynamic extra,
  4. int? clientId,
})
override

Implementation

@override
UpdateRecentStickers copyWith({
  bool? isAttached,
  List<int>? stickerIds,
  dynamic extra,
  int? clientId,
}) => UpdateRecentStickers(
  isAttached: isAttached ?? this.isAttached,
  stickerIds: stickerIds ?? this.stickerIds,
  extra: extra ?? this.extra,
  clientId: clientId ?? this.clientId,
);