Skip to content

Instantly share code, notes, and snippets.

@Sfshaza
Last active April 26, 2017 23:56
Show Gist options
  • Save Sfshaza/68fb4923eee0e9e3d3af42730c1d3503 to your computer and use it in GitHub Desktop.
Save Sfshaza/68fb4923eee0e9e3d3af42730c1d3503 to your computer and use it in GitHub Desktop.
Java-to-Dart codelab: Starting Rectangle example
import 'dart:math';
class Rectangle {
int width;
int height;
Point origin;
}
main() {} // Included main() to suppress uncaught exception.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment