platform/example_star_wars/lib/src/models/starship.dart

9 lines
149 B
Dart
Raw Normal View History

import 'package:angel_model/angel_model.dart';
class Starship extends Model {
String name;
int length;
Starship({this.name, this.length});
}