Company constructor

Company({
  1. int? employeeCount,
  2. String? id,
  3. String? industry,
  4. String? name,
  5. String? plan,
  6. Map<String, dynamic>? custom,
})

Implementation

Company(
    {this.employeeCount,
    this.id,
    this.industry,
    this.name,
    this.plan,
    Map<String, dynamic>? custom})
    : super(custom: custom);