isSamsungHealthDataIntegrationEnabled method

Future<bool> isSamsungHealthDataIntegrationEnabled()

Implementation

Future<bool> isSamsungHealthDataIntegrationEnabled() async {
  if (!Platform.isAndroid) {
    return false;
  }

  return await NativeSDKBridgeV3.isSamsungHealthDataIntegrationEnabled(
    connectionId: connectionId,
  );
}