mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-24 12:39:37 +00:00
12 lines
274 B
Dart
12 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;
|
||
|
}
|