copyWith method
Implementation
ProfilePhoto copyWith({
int? id,
File? small,
File? big,
Minithumbnail? minithumbnail,
bool? hasAnimation,
bool? isPersonal,
}) =>
ProfilePhoto(
id: id ?? this.id,
small: small ?? this.small,
big: big ?? this.big,
minithumbnail: minithumbnail ?? this.minithumbnail,
hasAnimation: hasAnimation ?? this.hasAnimation,
isPersonal: isPersonal ?? this.isPersonal,
);