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
Navaron Bracke
2023-11-07 15:30:50 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
369f44301873732cea85a05a19add868c3555842
369f4430
1 parent
5948daed
move dispose to the bottom
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
lib/src/mobile_scanner_platform_interface.dart
lib/src/mobile_scanner_platform_interface.dart
View file @
369f443
...
...
@@ -38,11 +38,6 @@ abstract class MobileScannerPlatform extends PlatformInterface {
throw
UnimplementedError
(
'buildCameraView() has not been implemented.'
);
}
/// Dispose of this [MobileScannerPlatform] instance.
void
dispose
()
{
throw
UnimplementedError
(
'dispose() has not been implemented.'
);
}
/// Reset the zoom scale, so that the camera is fully zoomed out.
Future
<
void
>
resetZoomScale
()
{
throw
UnimplementedError
(
'resetZoomScale() has not been implemented.'
);
...
...
@@ -91,4 +86,9 @@ abstract class MobileScannerPlatform extends PlatformInterface {
Future
<
void
>
updateScanWindow
(
Rect
?
window
)
{
throw
UnimplementedError
(
'updateScanWindow() has not been implemented.'
);
}
/// Dispose of this [MobileScannerPlatform] instance.
void
dispose
()
{
throw
UnimplementedError
(
'dispose() has not been implemented.'
);
}
}
...
...
Please
register
or
login
to post a comment