mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
12 lines
No EOL
243 B
Dart
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;
|
|
} |