gotoHealthApp method

Future<bool?> gotoHealthApp()

Implementation

Future<bool?> gotoHealthApp() async {
  var result = await _channel.invokeMethod('gotoHealthApp');
  var resultBase = ResultBase.fromJson(result);
  return resultBase.success;
}