LocalImageProvider constructor

LocalImageProvider()

Returns the singleton instance of the LocalImageProvider.

Implementation

factory LocalImageProvider() {
  if (null == _instance) {
    _instance = LocalImageProvider._internal();
  }
  return _instance!;
}