SetonixUser constructor

const SetonixUser({
  1. String? fingerprint,
  2. required String name,
  3. bool onWhitelist = false,
  4. DateTime? createdAt,
  5. DateTime? updatedAt,
  6. DateTime? lastLogin,
})

Implementation

const SetonixUser({
  this.fingerprint,
  required this.name,
  this.onWhitelist = false,
  this.createdAt,
  this.updatedAt,
  this.lastLogin,
});