enableAndroid static method

Future<void> enableAndroid()

Android Only Enables all Instabug functionality

Implementation

static Future<void> enableAndroid() async {
  if (Platform.isAndroid) {
    await _channel.invokeMethod<Object>('enable:');
  }
}