Доступ к XMLHttpRequest на заблокирован политикой CORS в моем веб-приложении Flutter

Я использую Stellar Networks Flutter Sdk и пытаюсь загрузить файл toml из домена по адресу https://soneso.com/.well-known/stellar.toml

но я продолжаю получать эту ошибку. Доступ к XMLHttpRequest по адресу «https://soneso.com/.well-known/stellar.toml» из источника «http: // localhost: 55821» заблокирован политикой CORS: ответ на предварительный запрос не проходит проверку контроля доступа: на запрошенном ресурсе отсутствует заголовок 'Access-Control-Allow-Origin'

это мой код ниже

InkWell(
        onTap:
        () {

            check() async {

                stellar.StellarToml stellarToml = await stellar.StellarToml.fromDomain("soneso.com");
                stellar.GeneralInformation generalInformation = stellarToml.generalInformation;
                print(generalInformation);
            }


            html.window.open("https://www.w3schools.com", "_blank", "toolbar=yes,scrollbars=yes,resizable=yes,top=${MediaQuery.of(context).size.height * 40 / 100},left=,width=400,height=700");
            check();


        },     

                                         },

person macphail magwira    schedule 14.06.2021    source источник