SecureValueTypePhone.deserialize constructor

SecureValueTypePhone.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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