connect method

Future<void> connect()

Connect to redis connection This call can be optional. If it function did not invoke initially, it will get call on first redis command.

Implementation

Future<void> connect() async {
  await connection.connect();
}