• This project
    • Loading...
  • Sign in

flutter_package / mobile_scanner

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • mobile_scanner
  • lib
  • src
  • barcode_capture.dart
  • feat: add return image and refactor existing functions · aa8298a7
    aa8298a7 Browse Directory
    Julian Steenbakker authored 2022-10-31 21:32:39 +0100
barcode_capture.dart 220 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
import 'dart:typed_data';

import 'package:mobile_scanner/src/barcode.dart';

class BarcodeCapture {
  List<Barcode> barcodes;
  Uint8List? image;

  BarcodeCapture({
    required this.barcodes,
    this.image,
  });

}