BaseClass constructor

BaseClass({
  1. required bool printLogs,
  2. required bool apiLogs,
  3. required bool navigationLogs,
})

Implementation

BaseClass({
  required this.printLogs,
  required this.apiLogs,
  required this.navigationLogs,
});