create method

Creates the resolver and allocates the stream info buffer.

Implementation

@override
/// Creates the resolver and allocates the stream info buffer.
LSLStreamResolver create() {
  if (created) {
    throw LSLException('Resolver already created');
  }
  _streamInfoBuffer = allocate<lsl_streaminfo>(maxStreams);
  super.create();
  return this;
}