getBiometricStorageFile method

  1. @Deprecated("This function is deprecated and will be removed in upcoming version")
Future<BiometricStorageFile> getBiometricStorageFile(
  1. String key
)

This function is deprecated and will be removed in upcoming version

Implementation

@Deprecated(
    "This function is deprecated and will be removed in upcoming version")
Future<BiometricStorageFile> getBiometricStorageFile(String key) async {
  return await BiometricStorage().getStorage(key,
      options: StorageFileInitOptions(
        authenticationRequired: false,
      ));
}