InquiriesCountData constructor

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

Implementation

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