Flutter - 未处理的异常:类型 '_InternalLinkedHashMap<String, dynamic>

Flutter - Unhandled Exception: type '_InternalLinkedHashMap<String, dynamic>

我正在调用 post API,我必须在其中发送 FormData 但是在收到响应后,当我尝试解析该响应时,我遇到了异常。

static Future<String> versionApiRequest(String storeId, String deviceId) async {
    String versionApi = 'https://xxxxxxx/${storeId}/api_v5/version';
    print('$versionApi , $storeId');

    FormData formData = new FormData.from(
        {"device_id": deviceId, "device_token":"", "platform":"android"});
    Dio dio = new Dio();
    Response response = await dio.post(versionApi, data: formData,
        options: new Options(
        contentType: ContentType.parse("application/json")));
    print(response.data.toString());

    StoreData storeData = storeDataFromJson(response.data);
    //print("-------store.success ---${storeData.success}");
    return "";
  }

我遇到以下错误:

Unhandled Exception: type '_InternalLinkedHashMap<String, dynamic>' is not a subtype of type 'String'
    #0      ApiController.versionApiRequest (package:restroapp/src/networkhandler/ApiController.dart:43:54)
    <asynchronous suspension>

下面是我的模型class https://gist.github.com/achinverma/641774f50d27b2f4f5be9f1c341f0fc2

将此更改为将响应映射到您的模型class

var responseData = StoreData.fromJson(response.data);