📌  相关文章
📜  DioError (DioError [DioErrorType.DEFAULT]: Converting object to an encodable object failed: Instance of - Dart Code Example

📅  最后修改于: 2022-03-11 14:48:02.484000             🧑  作者: Mango

代码示例1
// You need to add a toJson on your class.
// In my case was the params that were being sent to the api
/// var inputParams = new BlaBla(prop1: null, prop2: null).toJson();

class BlaBla {
String prop1;
String prop2;

BlaBla({this.prop1,this.prop2});

Map toJson() => {"prop1": prop1, "prop2": prop2}; // <-- add this
}