init static method

Future<void> init({
  1. String? proxy,
})

Initialize the service on web

This function initialize the proxy that the service uses in the network images.

Implementation

static Future<void> init({String? proxy}) {
  _proxy = proxy;
  return SynchronousFuture<void>(null);
}