init method

Future<void> init()

Inizializza il Provider impostando anche il certificato per il SecurityContext

Implementation

Future<void> init() async {
  _client = IOClient(
    HttpClient()
      ..badCertificateCallback = (certificate, host, port) {
        if (host == 'maps.googleapis.com') return true;
        return false;
      },
  );
  logger.i('[Provider] Successfully initialized');
}