setTrackStatus method
设置数据上报状态
上报状态,详见 GE_TRACK_STATUS 定义Implementation
@override
Future<void> setTrackStatus(GE_TRACK_STATUS status) async {
try {
methodChannel.invokeMethod('setTrackStatus', {'status': status.index});
} on PlatformException catch (e) {
print('setTrackStatus fail: ${e.message}');
}
}