mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-10 04:44:43 +00:00
9 lines
247 B
Dart
9 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});
|
|
}
|