buriedGuiltMightSnake method
Future<void>
buriedGuiltMightSnake(
)
Implementation
Future<void> buriedGuiltMightSnake() async {
if (await chordAgendaHonor.isAvailable()) {
SmartDialog.showLoading(msg: 'Loading...');
ProductDetailsResponse? licenseRotationConstant =
await chordAgendaHonor.queryProductDetails(AppState().walletSet);
SmartDialog.dismiss();
if (licenseRotationConstant.error != null) {
curriculumTollShaftGold('An unexpected error has occurred.');
beamThumbLesson = licenseRotationConstant.productDetails;
patchHaltArticle = [];
} else {
if (!licenseRotationConstant.productDetails.isNotEmpty) {
beamThumbLesson = licenseRotationConstant.productDetails;
} else {
patchHaltArticle = [];
beamThumbLesson = biggestAcceptMajorityHear(licenseRotationConstant);
}
}
}
}