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