toJson method

Map<String, Object?> toJson()

Implementation

Map<String, Object?> toJson() {
  var project = this.project;
  var type = this.type;

  final json = <String, Object?>{};
  if (project != null) {
    json[r'project'] = project.toJson();
  }
  json[r'type'] = type.value;
  return json;
}