mirror of
https://github.com/friebetill/TubeCards.git
synced 2025-08-16 11:21:56 +08:00
6 lines
175 B
Dart
6 lines
175 B
Dart
/// A mixin that enables the component to be called to show an dialog.
|
|
mixin ComponentDialog {
|
|
/// Called when the component should display the dialog.
|
|
void onDialog();
|
|
}
|