isScannerAvailable static method

Future<bool?> isScannerAvailable()

Check if scanner is available Returns a Future

Implementation

static Future<bool?> isScannerAvailable() {
  print("We're in Web, nothing to do here!");
  return Future.value(false);
}