copyWith method

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

Implementation

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