BusinessType constructor

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

Implementation

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