isPaymentAvailable property

Future<bool> get isPaymentAvailable

Implementation

Future<bool> get isPaymentAvailable => this.canMakePayment().then((value) =>
    value?.applePay == true ||
    value?.googlePay == true ||
    value?.link == true);