getStorage abstract method

Future<BiometricStorageFile> getStorage(
  1. String name, {
  2. StorageFileInitOptions? options,
  3. bool forceInit = false,
  4. PromptInfo promptInfo = PromptInfo.defaultValues,
})

Retrieves the given biometric storage file. Each store is completely separated, and has it's own encryption and biometric lock. if forceInit is true, will throw an exception if the store was already created in this runtime.

Implementation

Future<BiometricStorageFile> getStorage(
  String name, {
  StorageFileInitOptions? options,
  bool forceInit = false,
  PromptInfo promptInfo = PromptInfo.defaultValues,
});