Skip to content

Instantly share code, notes, and snippets.

@benznest
Created March 17, 2019 07:28
Show Gist options
  • Save benznest/02bfb73744bc2c1b65500f93c3281a0e to your computer and use it in GitHub Desktop.
Save benznest/02bfb73744bc2c1b65500f93c3281a0e to your computer and use it in GitHub Desktop.
Ternary Operator ?: in Dart
main(){
List<int> list = [1,2,3,4];
String str = list.isNotEmpty ? "available" : "none";
print(str);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment