KDLPatients/lib/app/presentation/example/controller/state.dart

11 lines
246 B
Dart
Raw Permalink Normal View History

2024-09-25 17:20:07 +00:00
import 'package:freezed_annotation/freezed_annotation.dart';
part 'state.freezed.dart';
@freezed
abstract class ExampleState with _$ExampleState {
const factory ExampleState.loading() = Loading;
const factory ExampleState.data() = Data;
}