analyze static method

Future<String> analyze()

Implementation

static Future<String> analyze() async {
  try {
    String value = await _channel.invokeMethod('analyze');
    return value;
  } on PlatformException catch (error) {
    return Future.error(error);
  }
}