state.dart 411 Bytes
import 'package:wow_english/models/app_version_entity.dart';

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

  ModuleSelectState clone() {
    return ModuleSelectState();
  }
}

class UpdateDialogState extends ModuleSelectState {

  final AppVersionEntity appVersionEntity;

  final bool forceUpdate;

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