canLoadNativeLibrary property

Future<bool?> canLoadNativeLibrary

check if it can load native library

Implementation

static Future<bool?> get canLoadNativeLibrary async {
  try {
    final bool? result = await _channel.invokeMethod('canLoadNativeLibrary');
    return result;
  } catch (error) {
    return null;
  }
}