copyWith method

Stickers copyWith({
  1. List<Sticker>? stickers,
  2. dynamic extra,
  3. int? clientId,
})

Implementation

Stickers copyWith({
  List<Sticker>? stickers,
  dynamic extra,
  int? clientId,
}) => Stickers(
  stickers: stickers ?? this.stickers,
  extra: extra ?? this.extra,
  clientId: clientId ?? this.clientId,
);