mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-02-05 20:57:07 +00:00
15 lines
318 B
Dart
15 lines
318 B
Dart
|
import 'package:mobx/mobx.dart';
|
||
|
|
||
|
part 'check_box_picker_store.g.dart';
|
||
|
|
||
|
class CheckBoxItem = _CheckBoxItem with _$CheckBoxItem;
|
||
|
|
||
|
abstract class _CheckBoxItem with Store {
|
||
|
_CheckBoxItem(this.title, this.value, {this.isDisabled = false});
|
||
|
|
||
|
final String title;
|
||
|
final bool isDisabled;
|
||
|
|
||
|
@observable
|
||
|
bool value;
|
||
|
}
|