flutter_carousel/example/lib/pokemon.dart
Jorian van der Kolk e260f49c1e initial commit
2022-08-30 17:07:48 +02:00

11 lines
167 B
Dart

class Pokemon {
Pokemon({
required this.name,
required this.nr,
this.types = const [],
});
String name;
int nr;
List<String> types = const [];
}