init method

Future<bool> init()

Init the package. Must be run to load shared_preferences, and its async

Implementation

Future<bool> init() async {
  await _developerOptionsService.init();
  isEnabled = _developerOptionsService.isEnabled;
  started = true;
  return true;
}