connect method

Future<bool> connect(
  1. EngineType engine,
  2. String config
)

Connect using specified engine

Implementation

Future<bool> connect(EngineType engine, String config) async {
  return await client.connect(engine, config);
}