CakeWallet/lib/utils/list_section.dart

5 lines
98 B
Dart
Raw Normal View History

2020-06-20 10:10:00 +03:00
class ListSection<Item> {
2022-10-12 13:09:57 -04:00
const ListSection({required this.items});
2020-06-20 10:10:00 +03:00
final List<Item> items;
}