AccountTakeout.deserialize constructor

AccountTakeout.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

factory AccountTakeout.deserialize(BinaryReader reader) {
  // Read [AccountTakeout] fields.
  final id = reader.readInt64();

  // Construct [AccountTakeout] object.
  final returnValue = AccountTakeout(id: id);

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