toJson method

Map<String, dynamic> toJson()

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.deleted != null) {
    json[r'deleted'] = this.deleted;
  } else {
    json[r'deleted'] = null;
  }
  return json;
}