📅  最后修改于: 2022-03-11 14:48:02.484000             🧑  作者: Mango
// 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
}