isUsingSharedStorage method

Future<bool?> isUsingSharedStorage()

Implementation

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