mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 20:19:25 +00:00
11 lines
274 B
Dart
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;
|
|
}
|