InquiriesCountData.fromJson constructor

InquiriesCountData.fromJson(
  1. dynamic json
)

Implementation

InquiriesCountData.fromJson(dynamic json) {
  _title = json['title'];
  _total = json['total'];
  _filterType = json['filter_type'];
  _showTo = json['show_to'];
}