| 1 | import 'package:flutter/cupertino.dart'; |
| 2 | import 'package:flutter/foundation.dart'; |
| 3 | import 'package:cake_wallet/view_model/settings/settings_list_item.dart'; |
| 4 | |
| 5 | class SwitcherListItem extends SettingsListItem { |
| 6 | SwitcherListItem({required String title, required this.value, required this.onValueChange}) |
| 7 | : super(title); |
| 8 | |
| 9 | final bool Function() value; |
| 10 | final void Function(BuildContext context, bool value) onValueChange; |
| 11 | } |