encoding static method

Future<int> encoding({
  1. dynamic code,
})

设置指令编码

Implementation

static Future<int> encoding({code}) async {
  final int p = await _channel.invokeMethod('encoding', {'code': code});
  return p;
}