ProjectList constructor

ProjectList({
  1. required int total,
  2. required List<Project> projects,
})

Implementation

ProjectList({
  required this.total,
  required this.projects,
});