copyWith method
Implementation
InquiriesCountData copyWith({ String? title,
num? total,
String? filterType,
String? showTo,
}) => InquiriesCountData( title: title ?? _title,
total: total ?? _total,
filterType: filterType ?? _filterType,
showTo: showTo ?? _showTo,
);