2024-10-13 01:45:27 +00:00
|
|
|
import 'package:protevus_serialize/protevus_serialize.dart';
|
2023-06-25 01:46:06 +00:00
|
|
|
|
|
|
|
import 'character.dart';
|
|
|
|
|
|
|
|
part 'droid.g.dart';
|
|
|
|
|
|
|
|
@serializable
|
|
|
|
abstract class _Droid extends Model implements Character {
|
|
|
|
String get position;
|
|
|
|
|
|
|
|
num get age;
|
|
|
|
}
|