copyWith method
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,
);