Login constructor

Login({
  1. int? id,
  2. int? clientId,
  3. String? deviceId,
  4. String? os,
  5. String? source,
  6. String? lastLoginMethod,
})

Implementation

Login({
  this.id,
  this.clientId,
  this.deviceId,
  this.os,
  this.source,
  this.lastLoginMethod,

});