YamlList constructor

YamlList({
  1. dynamic sourceUrl,
})

Creates an empty YamlList.

This list's span won't have useful location information. However, it will have a reasonable implementation of SourceSpan.message. If sourceUrl is passed, it's used as the SourceSpan.sourceUrl.

sourceUrl may be either a String, a Uri, or null.

Implementation

factory YamlList({sourceUrl}) => YamlListWrapper(const [], sourceUrl);