mirror of
https://github.com/Iconica-Development/flutter_carousel.git
synced 2025-05-18 20:13:43 +02:00
15 lines
252 B
Dart
15 lines
252 B
Dart
// SPDX-FileCopyrightText: 2022 Iconica
|
|
//
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
class Pokemon {
|
|
Pokemon({
|
|
required this.name,
|
|
required this.nr,
|
|
this.types = const [],
|
|
});
|
|
String name;
|
|
int nr;
|
|
List<String> types = const [];
|
|
}
|