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

13 lines
335 B

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