ForwardRule constructor
ForwardRule(
- Uri url,
- FileSpan span, {
- String? prefix,
- Iterable<
ConfiguredVariable> ? configuration,
Creates a @forward
rule that allows all members to be accessed.
Implementation
ForwardRule(this.url, this.span,
{this.prefix, Iterable<ConfiguredVariable>? configuration})
: shownMixinsAndFunctions = null,
shownVariables = null,
hiddenMixinsAndFunctions = null,
hiddenVariables = null,
configuration =
configuration == null ? const [] : List.unmodifiable(configuration);