cake_wallet/lib/store/check_box_picker_store.dart
2023-09-14 11:40:48 +03:00

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;
}