socketInstance property

LaravelEcho<Socket, SocketIoChannel> get socketInstance

Implementation

static LaravelEcho<Socket, SocketIoChannel> get socketInstance {
  if (!hasSocketInstance) {
    throw const StorageDatabaseException(
      'LaravelEcho socket instance has not initialized yet',
    );
  }

  return _socketInstance!;
}