LeadModel constructor

LeadModel(
  1. String name,
  2. String lead_name,
  3. String status,
  4. String company_name,
  5. String type,
)

Implementation

LeadModel(
  this.name,
  this.lead_name,
  this.status,
  this.company_name,
  this.type,
);