toJson method

Map toJson()

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;
}