copyWith method
StickerSets
copyWith({
- int? totalCount,
- List<
StickerSetInfo> ? sets, - dynamic extra,
- int? clientId,
Implementation
StickerSets copyWith({
int? totalCount,
List<StickerSetInfo>? sets,
dynamic extra,
int? clientId,
}) => StickerSets(
totalCount: totalCount ?? this.totalCount,
sets: sets ?? this.sets,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);