instance property

MetaFetch get instance

Get current instance of MetaFetch.

It will construct automatically if no instance created before.

Implementation

static MetaFetch get instance {
  _instance ??= MetaFetch();

  return _instance!;
}
set instance (MetaFetch newInstance)

Set a new instance for retrive MetaFetch.

Implementation

static set instance(MetaFetch newInstance) {
  _instance = newInstance;
}