isSamsungHealthDataIntegrationEnabled method
Check if Samsung Health Data integration in SpikeSDK is active or not
Implementation
Future<bool> isSamsungHealthDataIntegrationEnabled() async {
if (!Platform.isAndroid) {
return false;
}
return await NativeSDKBridgeV3.isSamsungHealthDataIntegrationEnabled(
connectionId: connectionId,
);
}