Implementation
Map<String, dynamic> get asJson => {
'created_by': createdBy,
'created_on': createdOn?.millisecondsSinceEpoch,
'custom_attributes': customAttributes,
'display_order': displayOrder,
'estimate': estimate,
'estimate_forecast': estimateForecast,
'id': id,
'is_deleted': isDeleted,
'milestone_id': milestoneId,
'priority_id': priorityId,
'refs': refs,
'section_id': sectionId,
'suite_id': suiteId,
'template_id': templateId,
'title': title,
'type_id': typeId,
'updated_by': updatedBy,
'updated_on': updatedOn?.millisecondsSinceEpoch,
};