13 lines
263 B
Dart
13 lines
263 B
Dart
import 'package:equatable/equatable.dart';
|
|
|
|
abstract class CheckBoxState extends Equatable {
|
|
const CheckBoxState();
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
}
|
|
|
|
class CheckboxUnchecked extends CheckBoxState {}
|
|
|
|
class CheckboxChecked extends CheckBoxState {}
|