基础库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

16 lines
375 B

  1. import 'package:meta/meta.dart';
  2. import 'package:zhiying_comm/pages/empty_page/model/empty_page_model.dart';
  3. @immutable
  4. abstract class EmptyPageState {}
  5. class EmptyPageInitial extends EmptyPageState {}
  6. class EmptyPageLoadedState extends EmptyPageState {
  7. EmptyPageModel model;
  8. EmptyPageLoadedState({this.model});
  9. }
  10. class EmptyPageErrorState extends EmptyPageState {}