this is my code kindly help me out
//searchwidget start
const searchWidget = new Search({
view: view,
locationEnabled: true,
includeDefaultSources: false,
allPlaceholder: "Search Location...",
sources: [{
locator: new Locator({ url: "http://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer"}),
countryCode:"US",
categories:["Address" ,"Postal"],
extent: {xmin:"-97.610790582999954", ymin:" 42.938855766000046", xmax:"-90.790790582999961", ymax:"49.758855766000039"},
"spatialReference": {
"wkid": 4326
},
singleLineFieldName: "SingleLine",
outFields: ["State", "Addr_type"],
suffix: ",Minnesota,MN,USA",
filter: {where: "State = 'Minnesota'"},
maxResults: 10,
maxSuggestions: 5,
suggestionsEnabled: true,
minSuggestCharacters: 4,
placeholder:"Find address"
}]
});