cake_wallet/lib/utils/item_cell.dart
2020-09-07 18:13:39 +03:00

11 lines
274 B
Dart

import 'package:flutter/foundation.dart';
import 'package:cake_wallet/utils/mobx.dart';
class ItemCell<Item> with Keyable {
ItemCell(this.value, {@required this.isSelected, @required dynamic key}) {
keyIndex = key;
}
final Item value;
final bool isSelected;
}