copyWith method

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

Implementation

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