mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-04-20 05:49:12 +00:00
15 lines
275 B
Dart
15 lines
275 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class MenuOption {
|
||
|
final IconData? icon;
|
||
|
final String title;
|
||
|
final void Function() action;
|
||
|
final bool? disabled;
|
||
|
|
||
|
const MenuOption({
|
||
|
required this.title,
|
||
|
required this.action,
|
||
|
this.icon,
|
||
|
this.disabled
|
||
|
});
|
||
|
}
|