mirror of
https://github.com/simplezhli/flutter_barcode_reader.git
synced 2024-11-15 01:19:23 +08:00
12 lines
377 B
Dart
12 lines
377 B
Dart
import 'dart:async';
|
|
|
|
import 'package:flutter/services.dart';
|
|
|
|
class BarcodeScanner {
|
|
static const CameraAccessDenied = 'PERMISSION_NOT_GRANTED';
|
|
static const UserCanceled = 'USER_CANCELED';
|
|
static const MethodChannel _channel =
|
|
const MethodChannel('com.apptreesoftware.barcode_scan');
|
|
static Future<String> scan() async => await _channel.invokeMethod('scan');
|
|
}
|