Logo white

GitLab

liangchengyou / wow_english

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • wow_english
  • lib
  • pages
  • home
  • state.dart
  • feat:课程结构调整
    2187c85f
    吴启风 authored
    2024-04-30 03:16:42 +0800  
    Browse Code »
state.dart 363 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
import 'package:wow_english/models/app_version_entity.dart';

class HomeState {
  HomeState init() {
    return HomeState();
  }

  HomeState clone() {
    return HomeState();
  }
}

class UpdateDialogState extends HomeState {

  final AppVersionEntity appVersionEntity;

  final bool forceUpdate;

  UpdateDialogState(this.forceUpdate, this.appVersionEntity);
}