copyWith method
Implementation
ChatPhotos copyWith({
int? totalCount,
List<ChatPhoto>? photos,
dynamic extra,
int? clientId,
}) =>
ChatPhotos(
totalCount: totalCount ?? this.totalCount,
photos: photos ?? this.photos,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);