mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
8 lines
190 B
Dart
8 lines
190 B
Dart
|
import 'package:cake_wallet/view_model/dashboard/action_list_item.dart';
|
||
|
|
||
|
class DateSectionItem extends ActionListItem {
|
||
|
DateSectionItem(this.date);
|
||
|
|
||
|
@override
|
||
|
final DateTime date;
|
||
|
}
|