toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
if (this.schemaVersion != null) {
json[r'schema_version'] = this.schemaVersion;
} else {
json[r'schema_version'] = null;
}
if (this.added != null) {
json[r'added'] = this.added;
} else {
json[r'added'] = null;
}
if (this.skipped != null) {
json[r'skipped'] = this.skipped;
} else {
json[r'skipped'] = null;
}
return json;
}