mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 15:30:59 +00:00
15 lines
350 B
Dart
15 lines
350 B
Dart
abstract class PermissionsCheckState {
|
|
const PermissionsCheckState();
|
|
}
|
|
|
|
class LoadingState extends PermissionsCheckState {
|
|
const LoadingState();
|
|
}
|
|
|
|
class PermissionsGrantedState extends PermissionsCheckState {
|
|
const PermissionsGrantedState();
|
|
}
|
|
|
|
class PermissionsDeniedState extends PermissionsCheckState {
|
|
const PermissionsDeniedState();
|
|
}
|