InquiryTypes constructor

InquiryTypes({
  1. String? type,
  2. bool? isSelected,
})

Implementation

InquiryTypes({
    String? type,
    bool? isSelected,}){
  _type = type;
  _isSelected = isSelected;
}