LoginTO constructor

LoginTO({
  1. int? idLogin,
  2. int? userId,
  3. String? loginDate,
  4. String? logoutDate,
  5. String? loginIP,
  6. String? latitude,
  7. String? longitude,
  8. String? browserName,
  9. String? platformDetails,
})

Implementation

LoginTO(
    {this.idLogin,
    this.userId,
    this.loginDate,
    this.logoutDate,
    this.loginIP,
    this.latitude,
    this.longitude,
    this.browserName,
    this.platformDetails});