Skip to content

Instantly share code, notes, and snippets.

@natebosch
Last active August 29, 2015 14:26
Show Gist options
  • Save natebosch/b6e205a89756f4bef74b to your computer and use it in GitHub Desktop.
Save natebosch/b6e205a89756f4bef74b to your computer and use it in GitHub Desktop.

Typing the right side of an assignment results in 'Info' lines from the analyzer. Typing the left side of an assignment results in 'Warning' lines from the anlayzer.

void main() {
List<String> typedLeft = [];
typedLeft.add(1);
final typedRight = <String>[];
typedRight.add(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment