showBanks method

  1. @override
Future<bool> showBanks(
  1. String url
)
override

Open native bank chooser widget.

Returns true if the given url was successfully opened

Implementation

@override
Future<bool> showBanks(String url) {
  return _channel.invokeMethod<bool>(
    'showBanks',
    <String, Object>{'url': url},
  ).then((value) => value ?? false);
}