isAvailable static method
Check if Mastercard Mobile SDK is available on this platform
Implementation
static Future<bool> isAvailable() async {
try {
final result = await _channel.invokeMethod('isAvailable');
return result as bool? ?? false;
} catch (e) {
return false;
}
}