toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
  if (this.count != null) {
    json[r'count'] = this.count;
  } else {
    json[r'count'] = null;
  }
  if (this.start != null) {
    json[r'start'] = this.start;
  } else {
    json[r'start'] = null;
  }
  if (this.end != null) {
    json[r'end'] = this.end;
  } else {
    json[r'end'] = null;
  }
  return json;
}