cake_wallet/lib/src/screens/dashboard/wallet_menu_item.dart
2021-12-30 21:14:48 +02:00

12 lines
No EOL
243 B
Dart

import 'package:flutter/material.dart';
class WalletMenuItem {
WalletMenuItem({
@required this.title,
@required this.image,
@required this.handler});
final String title;
final Image image;
final void Function() handler;
}