isSamsungHealthDataIntegrationEnabled method
Implementation
Future<bool> isSamsungHealthDataIntegrationEnabled() async {
if (!Platform.isAndroid) {
return false;
}
return await NativeSDKBridgeV3.isSamsungHealthDataIntegrationEnabled(
connectionId: connectionId,
);
}