import 'package:flutter/material.dart'; import 'package:hub/flutter_flow/flutter_flow_model.dart'; import 'package:hub/pages/about_property_page/about_property_screen.dart'; class AboutPropertyModel extends FlutterFlowModel { dynamic item; VoidCallback? safeSetState; Future initAsync() async { safeSetState?.call(); } @override void initState(BuildContext context) { initAsync(); } @override void dispose() {} }