mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
10 lines
247 B
Dart
10 lines
247 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class DesktopDropdownItem {
|
||
|
final Function() onSelected;
|
||
|
final Widget child;
|
||
|
final bool isSelected;
|
||
|
|
||
|
DesktopDropdownItem({required this.onSelected, required this.child, this.isSelected = false});
|
||
|
}
|