Project constructor

Project({
  1. required String id,
  2. required String name,
  3. String? type,
})

Implementation

Project({
  required this.id,
  required this.name,
  this.type,
});