fromByteArrayStream static method

Serializer fromByteArrayStream(
  1. ByteStream in_
)

Dummy static serializer.

Must be overridden by the respective implementing class.

@param in The input byte stream to be used @return the object parsed from the input stream by the respective class @throws IOException if not overridden or reached unexpectedly the end of stream

Implementation

static Serializer fromByteArrayStream(ByteStream in_) {
  throw Exception('Not implemented... should be overloaded');
}