SecureValueTypeDriverLicense.deserialize constructor

SecureValueTypeDriverLicense.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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