import '/flutter_flow/flutter_flow_util.dart'; import 'welcome_page_widget.dart' show WelcomePageWidget; import 'package:flutter/material.dart'; class WelcomePageModel extends FlutterFlowModel { /// Local state fields for this page. String toggleIdx = 'welcome'; /// State fields for stateful widgets in this page. final unfocusNode = FocusNode(); @override void initState(BuildContext context) {} @override void dispose() { unfocusNode.dispose(); } }