copyWith method

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

Implementation

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