autLine static method

Future<int> autLine({
  1. dynamic x,
  2. dynamic y,
  3. dynamic width,
  4. dynamic size,
  5. dynamic isbole,
  6. dynamic isdouble,
  7. dynamic str,
})

Implementation

static Future<int> autLine({x, y, width, size, isbole, isdouble, str}) async {
  final int p = await _channel.invokeMethod('autLine', {
    'x': x,
    'y': y,
    'width': width,
    'size': size,
    'isbole': isbole,
    'isdouble': isdouble,
    'str': str
  });
  return p;
}