enableUsingSharedStorage method

Future<bool> enableUsingSharedStorage()

Implementation

Future<bool> enableUsingSharedStorage() async {
  if (Platform.isAndroid || Platform.isIOS || Platform.isLinux) {
    throw UnsupportedError('user sharing not supported');
  }

  final result =
      await OnboardingService.getInstance().enableUsingSharedStorage();
  return result;
}