Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
dart_pdf
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
Morgan McKenzie
2019-05-03 13:32:11 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Committed by
David PHAM-VAN
2019-05-04 13:50:54 -0400
Commit
6d7fc4ebc7d0ed6ec8f88445e8289bf346af6ad0
6d7fc4eb
1 parent
cfcd69cd
Update call to FlutterErrorDetails to use a DignosticsNode instead of string
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
printing/lib/src/asset_utils.dart
printing/lib/src/asset_utils.dart
View file @
6d7fc4e
...
...
@@ -57,7 +57,7 @@ Future<PdfImage> pdfImageFromImageProvider(
onError
(
exception
,
stackTrace
);
}
else
{
FlutterError
.
reportError
(
FlutterErrorDetails
(
context:
'image failed to load'
,
context:
DiagnosticsNode
.
message
(
'image failed to load'
)
,
library
:
'printing'
,
exception:
exception
,
stack:
stackTrace
,
...
...
Please
register
or
login
to post a comment