cake_wallet/lib/src/screens/settings/items/settings_item.dart

22 lines
475 B
Dart
Raw Normal View History

2020-01-04 19:31:52 +00:00
import 'package:flutter/material.dart';
import 'package:cake_wallet/src/screens/settings/attributes.dart';
class SettingsItem {
2020-01-08 12:26:34 +00:00
SettingsItem(
{this.onTaped,
this.title,
this.link,
this.image,
this.widget,
this.attribute,
this.widgetBuilder});
2020-01-04 19:31:52 +00:00
final VoidCallback onTaped;
final String title;
final String link;
final Image image;
final Widget widget;
final Attributes attribute;
final WidgetBuilder widgetBuilder;
2020-01-08 12:26:34 +00:00
}