RequirementToContactEmpty.deserialize constructor

RequirementToContactEmpty.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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