9 lines
149 B
Dart
9 lines
149 B
Dart
![]() |
import 'package:angel_model/angel_model.dart';
|
||
|
|
||
|
class Starship extends Model {
|
||
|
String name;
|
||
|
int length;
|
||
|
|
||
|
Starship({this.name, this.length});
|
||
|
}
|