mirror of
https://github.com/friebetill/TubeCards.git
synced 2025-08-14 01:35:57 +08:00
7 lines
138 B
Dart
7 lines
138 B
Dart
class PopupMenuChoice {
|
|
PopupMenuChoice({required this.title, required this.action});
|
|
|
|
final String title;
|
|
final Function action;
|
|
}
|