fromByteArray static method

Future<PluginInformation> fromByteArray(
  1. List<int> buf
)

Wrapper function to simplify deserialization. @param buf the buffer to be read @return the deserialized object

Implementation

static Future<PluginInformation> fromByteArray(List<int> buf) async {
  ByteStream in_ = ByteStream(null, buf);
  return fromByteArrayStream(in_);
}