ProjectRequirements constructor

const ProjectRequirements({
  1. required String stateManagement,
  2. required String routing,
  3. required String projectScale,
  4. required String screenCount,
  5. required bool authenticationRequired,
  6. required bool sessionRequired,
  7. required String environmentSetup,
})

Implementation

const ProjectRequirements({
  required this.stateManagement,
  required this.routing,
  required this.projectScale,
  required this.screenCount,
  required this.authenticationRequired,
  required this.sessionRequired,
  required this.environmentSetup,
});