ExportElement constructor
ExportElement({})
Creates an export directive element with the specified parameters.
@param library The library containing this export @param uri The resolved URI for this export @param srcId Source identifier for tracking references @param stringUri Original string representation of the URI @param shownNames Names explicitly included via 'show' combinator @param hiddenNames Names explicitly excluded via 'hide' combinator
Implementation
ExportElement({
required super.library,
required super.uri,
required super.srcId,
required super.stringUri,
this.shownNames,
this.hiddenNames,
});