printText static method

Future<bool> printText(
  1. List<String> args
)

Implementation

static Future<bool> printText(List<String> args) async {
  try{
    final bool result = await _channel.invokeMethod('printText',{"args":args});
    print(result);
    return result;
  }catch(e){
    return false;
  }

}