isAvailable property

bool get isAvailable

Whether the native library has been loaded successfully.

Implementation

static bool get isAvailable {
  try {
    instance();
    return true;
  } catch (_) {
    return false;
  }
}