isUsingSharedStorage method

Future<bool?> isUsingSharedStorage()

Implementation

Future<bool?> isUsingSharedStorage() async {
  final result = await _keyChainManager.isUsingSharedStorage();
  return result;
}