20 lines
460 B
Dart
20 lines
460 B
Dart
import '/commons/widgets/flutter_flow_util.dart';
|
|
import 'widget.dart'
|
|
show PeopleOnThePropertyPageWidget;
|
|
import 'package:flutter/material.dart';
|
|
|
|
class PeopleOnThePropertyPageModel
|
|
extends FlutterFlowModel<PeopleOnThePropertyPageWidget> {
|
|
/// State fields for stateful widgets in this page.
|
|
|
|
final unfocusNode = FocusNode();
|
|
|
|
@override
|
|
void initState(BuildContext context) {}
|
|
|
|
@override
|
|
void dispose() {
|
|
unfocusNode.dispose();
|
|
}
|
|
}
|