SessionModel constructor

SessionModel({
  1. int id = 0,
  2. bool status = true,
  3. String deviceId = "",
  4. String userId = "",
})

Implementation

SessionModel({
  super.id = 0,
  super.status,
  this.deviceId = "",
  this.userId = "",
})  : startAt = DateTime.now(),
      lastUseAt = DateTime.now();