LeadTab constructor

LeadTab({
  1. String? type3,
  2. String? title,
  3. String? title2,
  4. num? total,
  5. num? showTotal,
})

Implementation

LeadTab({
    String? type3,
    String? title,
    String? title2,
    num? total,
    num? showTotal,}){
  _type3 = type3;
  _title = title;
  _title2 = title2;
  _total = total;
  _showTotal = showTotal;
}