AuthDropTempAuthKeys.deserialize constructor

AuthDropTempAuthKeys.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

factory AuthDropTempAuthKeys.deserialize(BinaryReader reader) {
  // Read [AuthDropTempAuthKeys] fields.
  final exceptAuthKeys = reader.readVectorInt64();

  // Construct [AuthDropTempAuthKeys] object.
  final returnValue = AuthDropTempAuthKeys(
    exceptAuthKeys: exceptAuthKeys,
  );

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