Settings constructor

Settings({
  1. String? route,
  2. String? page,
  3. String? controller,
  4. String? service,
  5. String? jsonFolder,
  6. List<String>? model,
})

Implementation

Settings({
  this.route,
  this.page,
  this.controller,
  this.service,
  this.jsonFolder,
  this.model,
});