Toggle navigation
Toggle navigation
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
Authored by
Julian Steenbakker
2022-05-23 11:04:15 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
853a656151fb70d29f59d5d92da4f2a0481b0c96
853a6561
1 parent
ddf1cb10
bug: fixed return type of analyzeImage
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
lib/src/mobile_scanner_controller.dart
lib/src/mobile_scanner_controller.dart
View file @
853a656
...
...
@@ -260,7 +260,7 @@ class MobileScannerController {
///
/// [path] The path of the image on the devices
Future
<
bool
>
analyzeImage
(
String
path
)
async
{
return
methodChannel
.
invokeMethod
(
'analyzeImage'
,
path
)
as
bool
;
return
methodChannel
.
invokeMethod
(
'analyzeImage'
,
path
)
as
Future
<
bool
>
;
}
/// Disposes the MobileScannerController and closes all listeners.
...
...
Please
register
or
login
to post a comment