SecureValueTypePassport.deserialize constructor

SecureValueTypePassport.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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