getSendJSON method
Implementation
@override
Map<String, dynamic> getSendJSON() {
Map<String, dynamic> map = decorator?.getSendJSON() ?? {};
if (_baseId != null) map[BKConstants.LIMIT_BASE] = _baseId;
if (_offset != null) map[BKConstants.LIMIT_OFFSET] = _offset;
map[BKConstants.LIMIT_RANGE] = _range;
map.addAll(_baseJSON);
return map;
}