LackOffBean constructor

LackOffBean({
  1. required LogType logType,
  2. required String logTitle,
  3. required String logDetail,
  4. required String date,
  5. String updated = 'false',
})

Implementation

LackOffBean({
  required this.logType,
  required this.logTitle,
  required this.logDetail,
  required this.date,
  this.updated = 'false',
});