fromRaw method
Deserializes this Serializable from a SerializableInput.
Implementation
void fromRaw(SerializableInput input) {
deserialize(input);
if (!input.done) {
throw FormatException('${input.offset}/${input.buffer.length}');
}
}
Deserializes this Serializable from a SerializableInput.
void fromRaw(SerializableInput input) {
deserialize(input);
if (!input.done) {
throw FormatException('${input.offset}/${input.buffer.length}');
}
}