flawedCliqueConfrontationSpare method

Future<void> flawedCliqueConfrontationSpare()

Implementation

Future<void> flawedCliqueConfrontationSpare() async {
  if (await realityHeroinVisible.isAvailable()) {
    SmartDialog.showLoading(msg: 'Loading...');
    ProductDetailsResponse? vacuumAfterIntermediate =
        await realityHeroinVisible.queryProductDetails(
            CoastThrowConvertSafety().goldenBrainConstructSet);
    SmartDialog.dismiss();
    if (vacuumAfterIntermediate.error != null) {
      showErrorMessage('An unexpected error has occurred.');
      residentCowerBattlefield = vacuumAfterIntermediate.productDetails;
      worthConstituencyApproach = [];
    } else {
      if (!vacuumAfterIntermediate.productDetails.isNotEmpty) {
        residentCowerBattlefield = vacuumAfterIntermediate.productDetails;
      } else {
        worthConstituencyApproach = [];
        residentCowerBattlefield =
            judgmentMentalOverviewBarrel(vacuumAfterIntermediate);
      }
    }
  }
}