27 lines
539 B
Dart
27 lines
539 B
Dart
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<QrCodePageWidget> {
|
|
/// 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 {}
|
|
}
|