flutter_carousel/example/lib/pokemon.dart

15 lines
252 B
Dart
Raw Normal View History

2022-11-01 08:20:01 +01:00
// SPDX-FileCopyrightText: 2022 Iconica
//
// SPDX-License-Identifier: BSD-3-Clause
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<String> types = const [];
}