Skip to content

Instantly share code, notes, and snippets.

@flutterdevrelgists
Forked from Sfshaza/main.dart
Created November 5, 2022 02:35
Show Gist options
  • Save flutterdevrelgists/e8481009edff7029bb165bad60d8dada to your computer and use it in GitHub Desktop.
Save flutterdevrelgists/e8481009edff7029bb165bad60d8dada to your computer and use it in GitHub Desktop.
Java-to-Dart codelab: Basic bicycle example

Java-to-Dart codelab: Basic bicycle example

Created with <3 with dartpad.dev.

class Bicycle {
int cadence;
int speed;
int gear;
Bicycle(this.cadence, this.speed, this.gear);
@override
String toString() => 'Bicycle: $speed mph';
}
void main() {
var bike = Bicycle(2, 0, 1);
print(bike);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment