qualifiedSmellAverageStuff method
Future<void>
qualifiedSmellAverageStuff(
- String dressDepositConversation
)
Implementation
Future<void> qualifiedSmellAverageStuff(
String dressDepositConversation) async {
try {
coffinPollutionVehicle = wheatAdventureNorth
.firstWhere((item) => item.id == dressDepositConversation);
await lawyerCurrentAuthoriseFever();
await referenceCourtCause.buyConsumable(
purchaseParam: PurchaseParam(
productDetails: coffinPollutionVehicle!,
),
);
} catch (e) {
_showErrorNotify(
'Something went wrong with the payment. Give it another try.$e',
);
}
}