mirror of
https://github.com/Iconica-Development/flutter_carousel.git
synced 2025-05-18 20:13:43 +02:00
11 lines
167 B
Dart
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 [];
|
|
}
|