DEV Community

Discussion on: My initial thoughts on using Flutter and Dart for App development

Collapse
 
dz4k profile image
Deniz Akşimşek • Edited

Your Dart class example could be made shorter.

class Car {
  String carName;
  bool carAutomatic;

  Car(this.carName, this.carAutomatic);
}
Enter fullscreen mode Exit fullscreen mode