13 lines
345 B
Dart
13 lines
345 B
Dart
import '/flutter_flow/flutter_flow_util.dart';
|
|
import 'legacy_local_component_widget.dart' show LegacyLocalComponentWidget;
|
|
import 'package:flutter/material.dart';
|
|
|
|
class LegacyLocalComponentModel
|
|
extends FlutterFlowModel<LegacyLocalComponentWidget> {
|
|
@override
|
|
void initState(BuildContext context) {}
|
|
|
|
@override
|
|
void dispose() {}
|
|
}
|