connect method

Future<void> connect()

Implementation

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

  for (Entity entity in entities) {
    await entity.init();
  }
}