toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
if (startKey != null) {
json[r'startKey'] = startKey;
}
if (startKeyDocId != null) {
json[r'startKeyDocId'] = startKeyDocId;
}
return json;
}