platform/test/shared.dart
2016-06-24 15:02:35 -04:00

6 lines
No EOL
110 B
Dart

class Postcard {
String location;
String message;
Postcard({String this.location, String this.message});
}