SyntaxSpan.withDefault constructor

SyntaxSpan.withDefault()

Implementation

factory SyntaxSpan.withDefault() {
  return SyntaxSpan((builder) {
    builder
      ..from = SyntaxPosition.withDefault().toBuilder()
      ..to = SyntaxPosition.withDefault().toBuilder();
  });
}