flutter_carousel/example/lib/pokemon.dart

17 lines
312 B
Dart
Raw Normal View History

2022-11-01 08:20:01 +01:00
// SPDX-FileCopyrightText: 2022 Iconica
//
// SPDX-License-Identifier: BSD-3-Clause
import 'package:carousel_example/pokemon_types.dart';
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<PokemonType> types = const [];
2022-08-24 16:38:36 +02:00
}