flutter_barcode_reader/ios/Classes/BarcodeScannerViewControllerDelegate.h
2017-11-07 18:32:33 -08:00

13 lines
309 B
Objective-C

//
// Created by Matthew Smith on 11/7/17.
//
#import <Foundation/Foundation.h>
@class BarcodeScannerViewController;
@protocol BarcodeScannerViewControllerDelegate <NSObject>
- (void)barcodeScannerViewController:(BarcodeScannerViewController *)controller didScanBarcodeWithResult:(NSString *)result;
@end