mirror of
https://github.com/simplezhli/flutter_barcode_reader.git
synced 2024-11-15 01:09:19 +08:00
24 lines
863 B
Dart
24 lines
863 B
Dart
import 'dart:async';
|
|
|
|
import 'package:flutter/services.dart';
|
|
|
|
/// Barcode scanner plugin
|
|
/// Simply call `var barcode = await BarcodeScanner.scan()` to scan a barcode
|
|
class BarcodeScanner {
|
|
/// If the user has not granted the access to the camera this code is thrown.
|
|
static const CameraAccessDenied = 'PERMISSION_NOT_GRANTED';
|
|
|
|
/// If the user cancel the scan an exception with this code is thrown.
|
|
static const UserCanceled = 'USER_CANCELED';
|
|
|
|
/// The method channel
|
|
static const MethodChannel _channel =
|
|
const MethodChannel('de.mintware.barcode_scan');
|
|
|
|
/// Starts the camera for scanning the barcode, shows a preview window and
|
|
/// returns the barcode if one was scanned.
|
|
/// Can throw an exception.
|
|
/// See also [CameraAccessDenied] and [UserCanceled]
|
|
static Future<String> scan() async => await _channel.invokeMethod('scan');
|
|
}
|