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