AuthSentCodeTypeApp.deserialize constructor

AuthSentCodeTypeApp.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

factory AuthSentCodeTypeApp.deserialize(BinaryReader reader) {
  // Read [AuthSentCodeTypeApp] fields.
  final length = reader.readInt32();

  // Construct [AuthSentCodeTypeApp] object.
  final returnValue = AuthSentCodeTypeApp(length: length);

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