toJson method
Implementation
Map<String, dynamic> toJson() {
final _json = <String, dynamic>{};
if (limit != null) {
_json['limit'] = limit;
}
if (before != null) {
_json['before'] = before;
}
if (after != null) {
_json['after'] = after;
}
return _json;
}