Skip to content

Instantly share code, notes, and snippets.

@thekarel
Created August 7, 2019 21:38
Show Gist options
  • Save thekarel/8873493a7f7e16259e736920c3e3257b to your computer and use it in GitHub Desktop.
Save thekarel/8873493a7f7e16259e736920c3e3257b to your computer and use it in GitHub Desktop.
Dart constructor arguments
void main() {
final food = Food('good', price: 3);
print('${food.taste} ${food.price.toString()}');
}
class Food {
Food(this.taste, {this.price});
final String taste;
final int price;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment