ProjectModel constructor

const ProjectModel({
  1. required String name,
})

Creates a new ProjectModel.

Implementation

const ProjectModel({
  required this.name,
});