mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 01:47:41 +00:00
5 lines
No EOL
98 B
Dart
5 lines
No EOL
98 B
Dart
class ListSection<Item> {
|
|
const ListSection({required this.items});
|
|
|
|
final List<Item> items;
|
|
} |