copyWith method

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

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,
);