sysGetVersion method

  1. @override
Future<int?> sysGetVersion(
  1. List<int> buf
)
override

Implementation

@override
Future<int?> sysGetVersion(List<int> buf) {
  final Map<String, dynamic> args = <String, dynamic>{
    'buf': buf,
  };
  return methodChannel.invokeMethod<int>('SysGetVersion', args);
}