cancelTest method
Implementation
@override
Future<bool> cancelTest() async {
var result = false;
try {
result = await _channel.invokeMethod("cancelTest", {
'id1': CallbacksEnum.startDownLoadTesting.index,
'id2': CallbacksEnum.startUploadTesting.index,
});
} on PlatformException {
result = false;
}
return result;
}