Profile constructor

Profile({
  1. String? id,
  2. String? userId,
  3. String? name,
  4. bool? active,
  5. bool? isDefault,
  6. DateTime? createdAt,
  7. bool? hasMargin,
})

Implementation

Profile({
  this.id,
  this.userId,
  this.name,
  this.active,
  this.isDefault,
  this.createdAt,
  this.hasMargin,
});