Skip to content

Instantly share code, notes, and snippets.

@luanpotter
Created March 29, 2021 00:14
Show Gist options
  • Save luanpotter/0c55307875b59e0c1020fd75c211c379 to your computer and use it in GitHub Desktop.
Save luanpotter/0c55307875b59e0c1020fd75c211c379 to your computer and use it in GitHub Desktop.
final a = isConditionTrue ? 1 : 2;
final a = if (isConditionTrue) 1 else 2;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment