AuthCheckRecoveryPassword.deserialize constructor

AuthCheckRecoveryPassword.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

factory AuthCheckRecoveryPassword.deserialize(BinaryReader reader) {
  // Read [AuthCheckRecoveryPassword] fields.
  final code = reader.readString();

  // Construct [AuthCheckRecoveryPassword] object.
  final returnValue = AuthCheckRecoveryPassword(
    code: code,
  );

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