isAvailable method
Returns true if the payment platform is ready and available.
Implementation
@override
Future<bool> isAvailable() async {
return billingClientManager.runWithClientNonRetryable(
(BillingClient client) => client.isReady(),
);
}