SecureValueTypePassportRegistration.deserialize constructor

SecureValueTypePassportRegistration.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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