我正在尝试创建动态下拉列表,其值使用微服务从查找表中填充,但我已经尝试过很多方法,直到现在我还没有成功使其工作 . 因为我是dart / flutter的新手所以任何人都可以在下面的代码中找出我做错了什么

below code is for calling webservice

Future<List<CountryDropDownList>> getCountriesDetails(String url) async{
    HttpClient httpClient = new HttpClient();
    HttpClientRequest request = await httpClient.getUrl(Uri.parse(url));
    // request.headers.set('content-type', 'application/json');
    print("request data "+request.toString());
    HttpClientResponse microServicesResponse= await request.close();
    String microServicesResponseString = await microServicesResponse.transform(utf8.decoder).join();
    final parsed = await json.decode(microServicesResponseString).cast<Map<String, dynamic>>();
    httpClient.close();
    print("Data Recieved   "+microServicesResponseString.toString());
    return parsed
        .map<CountryDropDownList>(
            (json) => CountryDropDownList.fromJson(json))
        .toList();
  }

这是我的对象类型

class CountryDropDownList{

  String countryName;
  List<StateDropDownList> stateDropDownList;


  CountryDropDownList({this.countryName, this.stateDropDownList});

  factory CountryDropDownList.fromJson(Map<String, dynamic> json) {
    return CountryDropDownList(
      countryName: json['countryName'] as String,
      stateDropDownList: json['states'] as List<StateDropDownList>,
    );
  }
}

and just for displaying as of now running below code

class CenterFoundationSubmission extends StatefulWidget  {
      CenterFoundationSubmission({Key key}) : super(key: key);

      @override
      _CenterFoundationSubmissionState createState() => new _CenterFoundationSubmissionState();
    }

    class _CenterFoundationSubmissionState extends State<CenterFoundationSubmission> {

      NetworkUtil _netUtil = new NetworkUtil();

      var url = "SomeUrl";

      @override
      void initState() {
        super.initState();
        setState(() {
        });
      }


      @override
      Widget build(BuildContext context) {
        var futureBuilder = new FutureBuilder(
          future: _getData(),
          builder: (BuildContext context, AsyncSnapshot snapshot) {
            switch (snapshot.connectionState) {
              case ConnectionState.none:
              case ConnectionState.waiting:
                return new Text('loading...');
              default:
                if (snapshot.hasError)
                  return new Text('Exception here is : ${snapshot.error}');
                else
                  return createView(context, snapshot);
            }
          },
        );

        return new Scaffold(
          appBar: new AppBar(
            title: new Text("Center Foundation"),
          ),
          body: futureBuilder,
        );

      }

      Future<List<CountryDropDownList>> _getData() async {
        List<CountryDropDownList> values = new List<CountryDropDownList>();
        values.addAll(_netUtil.getCountriesDetails(url) as List<CountryDropDownList>);

/*Error Added here , i am getting error while casting list to my object type*/


        await new Future.delayed(new Duration(seconds: 10));

        return values;
      }

      Widget createView(BuildContext context, AsyncSnapshot snapshot) {
        List<CountryDropDownList> values = snapshot.data;
        return new ListView.builder(
          itemCount: values.length,
          itemBuilder: (BuildContext context, int index) {
            return new Column(
              children: <Widget>[
                new ListTile(
                  title: new Text(values[index].countryName),
                  subtitle:  new Text(values[index].stateDropDownList[index].statesName),
                  trailing:   new Text(values[index].stateDropDownList[index].districtDropDownList[index].districtsName),
                ),
                new Divider(height: 2.0,),
              ],
            );
          },
        );
      }
    }

我做了什么,我尝试以多种方式调用webservices来调用它,尝试直接使用JSON字符串响应进行投射服务响应,可能我已经尝试过 .

你能帮忙吗,帮助将不胜感激 .