copyWith method
Implementation
InquiryTypes copyWith({ String? type,
bool? isSelected,
}) => InquiryTypes( type: type ?? _type,
isSelected: isSelected ?? _isSelected,
);
InquiryTypes copyWith({ String? type,
bool? isSelected,
}) => InquiryTypes( type: type ?? _type,
isSelected: isSelected ?? _isSelected,
);