Showing
1 changed file
with
11 additions
and
2 deletions
| @@ -2,10 +2,19 @@ import 'dart:async'; | @@ -2,10 +2,19 @@ import 'dart:async'; | ||
| 2 | import 'dart:io'; | 2 | import 'dart:io'; |
| 3 | // ignore: unnecessary_import | 3 | // ignore: unnecessary_import |
| 4 | import 'dart:typed_data'; | 4 | import 'dart:typed_data'; |
| 5 | -import 'package:flutter/cupertino.dart'; | 5 | + |
| 6 | import 'package:flutter/foundation.dart'; | 6 | import 'package:flutter/foundation.dart'; |
| 7 | import 'package:flutter/services.dart'; | 7 | import 'package:flutter/services.dart'; |
| 8 | -import 'package:mobile_scanner/mobile_scanner.dart'; | 8 | +import 'package:mobile_scanner/src/enums/barcode_format.dart'; |
| 9 | +import 'package:mobile_scanner/src/enums/camera_facing.dart'; | ||
| 10 | +import 'package:mobile_scanner/src/enums/detection_speed.dart'; | ||
| 11 | +import 'package:mobile_scanner/src/enums/mobile_scanner_error_code.dart'; | ||
| 12 | +import 'package:mobile_scanner/src/enums/mobile_scanner_state.dart'; | ||
| 13 | +import 'package:mobile_scanner/src/enums/torch_state.dart'; | ||
| 14 | +import 'package:mobile_scanner/src/mobile_scanner_exception.dart'; | ||
| 15 | +import 'package:mobile_scanner/src/objects/barcode.dart'; | ||
| 16 | +import 'package:mobile_scanner/src/objects/barcode_capture.dart'; | ||
| 17 | +import 'package:mobile_scanner/src/objects/mobile_scanner_arguments.dart'; | ||
| 9 | 18 | ||
| 10 | /// The [MobileScannerController] holds all the logic of this plugin, | 19 | /// The [MobileScannerController] holds all the logic of this plugin, |
| 11 | /// where as the [MobileScanner] class is the frontend of this plugin. | 20 | /// where as the [MobileScanner] class is the frontend of this plugin. |
-
Please register or login to post a comment