Token constructor

Token({
  1. String? id,
  2. Map<String, String>? token,
  3. String? appName,
  4. String? userId,
  5. bool? enabled,
  6. DateTime? createdAt,
  7. DateTime? updatedAt,
})

Implementation

Token({
  this.id,
  this.token,
  this.appName,
  this.userId,
  this.enabled,
  this.createdAt,
  this.updatedAt,
});