| 1 | import 'package:flutter/material.dart'; |
| 2 | import 'package:cake_wallet/src/screens/settings/attributes.dart'; |
| 3 | |
| 4 | class SettingsItem { |
| 5 | SettingsItem( |
| 6 | {required this.onTaped, |
| 7 | required this.title, |
| 8 | required this.link, |
| 9 | required this.image, |
| 10 | required this.widget, |
| 11 | required this.attribute, |
| 12 | required this.widgetBuilder}); |
| 13 | |
| 14 | final VoidCallback onTaped; |
| 15 | final String title; |
| 16 | final String link; |
| 17 | final Image image; |
| 18 | final Widget widget; |
| 19 | final Attributes attribute; |
| 20 | final WidgetBuilder widgetBuilder; |
| 21 | } |