flutter-freaccess-hub/lib/pages/about_property_page/about_property_model.dart

24 lines
471 B
Dart

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<AboutPropertyPage> {
dynamic item;
VoidCallback? safeSetState;
Future<void> initAsync() async {
safeSetState?.call();
}
@override
void initState(BuildContext context) {
initAsync();
}
@override
void dispose() {}
}