You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When launching the application in dartium, selecting example 4 from the drop down box results in an error:
"Breaking on exception: type 'List' is not a subtype of type 'List' of 'elements'."
This refers to line 167 in typed_data.dart:
" factory Float32List.fromList(List < double > elements) {"
Running the application in production mode does not reveal the problem.
The text was updated successfully, but these errors were encountered:
Looks like Dartium is complaining that a list of num's isn't the same as a
list of doubles. Not sure if this is a dartium specific bug, but fixing
eitherway.
Using latest dart sdk: 0.6.9.2_r25388
When launching the application in dartium, selecting example 4 from the drop down box results in an error:
"Breaking on exception: type 'List' is not a subtype of type 'List' of 'elements'."
This refers to line 167 in typed_data.dart:
" factory Float32List.fromList(List < double > elements) {"
Running the application in production mode does not reveal the problem.
The text was updated successfully, but these errors were encountered: