canPurchaseStore method
Can Purchase Store.
ID: 4fdc5ea7.
Implementation
Future<Result<Boolean>> canPurchaseStore({
required InputStorePaymentPurposeBase purpose,
}) async {
// Preparing the request.
final request = PaymentsCanPurchaseStore(purpose: purpose);
// Invoke and wait for response.
final response = await _c.invoke(request);
// Return the result.
return response._to<Boolean>();
}