showBanksCustom method

  1. @override
Future<bool> showBanksCustom(
  1. String url, {
  2. required int backgroundCode,
  3. required int textCode,
})
override

Implementation

@override
Future<bool> showBanksCustom(String url,
    {required int backgroundCode, required int textCode}) {
  return _channel.invokeMethod<bool>(
    'showBanksCustom',
    <String, Object>{
      'url': url,
      'background': backgroundCode,
      'text': textCode
    },
  ).then((value) => value ?? false);
}