text static method

dynamic text(
  1. String text
)

打印文本

Implementation

static text(String text) async {
  await _channel.invokeMethod('text', {'text': text});
}