mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-28 21:46:02 +00:00
15 lines
No EOL
318 B
Dart
15 lines
No EOL
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;
|
|
} |