convert static method

Future<String> convert(
  1. String text,
  2. ConverterOption option, {
  3. bool inBackground = false,
})

Converter input text with a given option.

For example:

var text = '鼠标里面的硅二极管坏了,导致光标分辨率降低。';
var result = await ChineseConverter.convert(text, S2TWp());

You can pass the inBackground parameter if you want to create native threads while doing text conversion.

Implementation

static Future<String> convert(
  String text,
  ConverterOption option, {
  bool inBackground = false,
}) async {
  final String result =
      await _channel.invokeMethod('convert', [text, option.id, inBackground]);
  return result;
}