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