Use = instead of :

This commit is contained in:
Tobe O 2019-08-07 22:28:31 -04:00
parent 4a655abb84
commit 29d840d7da

View file

@ -9,7 +9,7 @@ class StringValueContext extends InputValueContext<String> {
final Token STRING;
final bool isBlockString;
StringValueContext(this.STRING, {this.isBlockString: false});
StringValueContext(this.STRING, {this.isBlockString = false});
@override
FileSpan get span => STRING.span;