flutter_carousel/example/lib/pokemon.dart

11 lines
167 B
Dart
Raw Normal View History

2022-08-24 16:38:36 +02:00
class Pokemon {
Pokemon({
required this.name,
required this.nr,
this.types = const [],
});
String name;
int nr;
List<String> types = const [];
}