toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return <String, dynamic>{
    if (id != null) r'id': id,
    if (priorities != null) r'priorities': priorities,
    if (type != null) r'type': type,
    if (workflow != null) r'workflow': workflow,
  };
}