BusinessType constructor

BusinessType(
  1. {int? id,
  2. String? name,
  3. int? status,
  4. dynamic deletedAt,
  5. DateTime? createdAt,
  6. DateTime? updatedAt}
)

Implementation

BusinessType({
  this.id,
  this.name,
  this.status,
  this.deletedAt,
  this.createdAt,
  this.updatedAt,
});