AccountTakeout.deserialize constructor
AccountTakeout.deserialize(
- 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;
}