fromRaw method

void fromRaw(
  1. SerializableInput input
)

Deserializes this Serializable from a SerializableInput.

Implementation

void fromRaw(SerializableInput input) {
  deserialize(input);
  if (!input.done) {
    throw FormatException('${input.offset}/${input.buffer.length}');
  }
}