import '/flutter_flow/flutter_flow_util.dart'; import 'dart:async'; import 'qr_code_page_widget.dart' show QrCodePageWidget; import 'package:flutter/material.dart'; class QrCodePageModel extends FlutterFlowModel { /// Local state fields for this page. bool isAccess = false; String? key; DateTime? time; @override void initState(BuildContext context) {} @override void dispose() {} /// Action blocks. Future qrCodeEncoder( BuildContext context, { required String? key, }) async {} }