isAvailable property
bool
get
isAvailable
Check if native libraries are available on this platform.
Implementation
static bool get isAvailable {
try {
loadCommons();
return true;
} catch (_) {
return false;
}
}