openWithBank static method

Future<bool> openWithBank(
  1. String bankScheme,
  2. String url
)

Returns true if open url is successful.

Implementation

static Future<bool> openWithBank(String bankScheme, String url) async {
  final Uri uri = Uri.parse(url.trimLeft());
  final bool isWebURL = uri.scheme == 'http' || uri.scheme == 'https';
  if (!isWebURL) {
    throw PlatformException(
        code: 'NOT_A_WEB_SCHEME',
        message:
            'You need to pass in a web URL. This $url is not a web URL.');
  }
  return SbpPaymentsPlatform.instance.openWithBank(bankScheme, url);
}