PlacementDescription constructor

PlacementDescription({
  1. required Map<String, String> attributes,
  2. required DateTime createdDate,
  3. required String placementName,
  4. required String projectName,
  5. required DateTime updatedDate,
})

Implementation

PlacementDescription({
  required this.attributes,
  required this.createdDate,
  required this.placementName,
  required this.projectName,
  required this.updatedDate,
});