UserProfilePhotoEmpty.deserialize constructor

UserProfilePhotoEmpty.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

factory UserProfilePhotoEmpty.deserialize(BinaryReader reader) {
  // Construct [UserProfilePhotoEmpty] object.
  final returnValue = UserProfilePhotoEmpty();

  // Now return the deserialized [UserProfilePhotoEmpty].
  return returnValue;
}