copyWith method

InquiriesCountData copyWith({
  1. String? title,
  2. num? total,
  3. String? filterType,
  4. String? showTo,
})

Implementation

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