tryLoad static method
Try to load the commons library, returning null if it fails.
Implementation
static DynamicLibrary? tryLoad() {
try {
return loadCommons();
} catch (_) {
return null;
}
}
Try to load the commons library, returning null if it fails.
static DynamicLibrary? tryLoad() {
try {
return loadCommons();
} catch (_) {
return null;
}
}