openBankIOS static method

Future<bool> openBankIOS(
  1. String url,
  2. String schema
)

открываем банк: IOS отдаем ссылку в виде 'https://qr.nspk.ru/...' schema: bank10000000000

Implementation

static Future<bool> openBankIOS(String url, String schema) async => await _channel.invokeMethod(
      'openBank',
      {
        'url': url,
        'schema': schema,
      },
    );