platform/test/shared.dart

6 lines
110 B
Dart
Raw Normal View History

2016-06-24 19:02:35 +00:00
class Postcard {
String location;
String message;
Postcard({String this.location, String this.message});
}