copyWith method
Implementation
SetProfilePhoto copyWith({
InputChatPhoto? photo,
bool? isPublic,
}) =>
SetProfilePhoto(
photo: photo ?? this.photo,
isPublic: isPublic ?? this.isPublic,
);
SetProfilePhoto copyWith({
InputChatPhoto? photo,
bool? isPublic,
}) =>
SetProfilePhoto(
photo: photo ?? this.photo,
isPublic: isPublic ?? this.isPublic,
);