You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cake_wallet/lib/view_model/wallet_list/wallet_list_item.dart

18 lines
394 B

import 'package:flutter/foundation.dart';
import 'package:cw_core/wallet_type.dart';
class WalletListItem {
const WalletListItem(
{@required this.name,
@required this.type,
@required this.key,
this.isCurrent = false,
this.isEnabled = true});
final String name;
final WalletType type;
final bool isCurrent;
final dynamic key;
final bool isEnabled;
}