InquiresType constructor

InquiresType({
  1. String? type,
  2. String? typeShow,
  3. bool isSelected = false,
  4. String? adminModuleId,
})

Implementation

InquiresType({
    String? type,
    String? typeShow,
    bool isSelected = false,
    String? adminModuleId,}){
  _type = type;
  _typeShow = typeShow;
  _isSelected = isSelected;
  _adminModuleId = adminModuleId;
}