toJson method
Implementation
Map toJson(){
Map _result = {};
if (limit != null) _result.addAll({"limit": limit});
if (threshold != null) _result.addAll({"threshold": threshold});
_result.addAll({"groupIds": groupIds});
return _result;
}
Map toJson(){
Map _result = {};
if (limit != null) _result.addAll({"limit": limit});
if (threshold != null) _result.addAll({"threshold": threshold});
_result.addAll({"groupIds": groupIds});
return _result;
}