disableSamsungHealthDataIntegration static method
Future<void>
disableSamsungHealthDataIntegration(
{ - required String connectionId,
})
Implementation
static Future<void> disableSamsungHealthDataIntegration({
required String connectionId,
}) async {
if (!Platform.isAndroid) {
throw Exception('disableSamsungHealthDataIntegration method is only available on Android');
}
final result = await _channel.invokeMethod('disableSamsungHealthDataIntegration', {
'connectionId': connectionId,
});
ExceptionHandler.checkException(result);
}