Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolved Error type 'bool' is not a subtype of'Location' #199

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

firoz3130
Copy link

Fixes #

Describe the changes you have made in this PR -

Resolved The error E/flutter (19267): [ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: type 'bool' is not a subtype of type 'Location' in type cast
"type 'bool' is not a subtype of type 'Location' in type cast" suggests that the variable fields[6] which is being cast as Location is actually a boolean value. fields[6] was returning a bool value whereas expected was Location.We can't assign a boolean value to a Location object using the as keyword.
fields is a Map used to store the values read from the BinaryReader object.The BinaryReader is a class in the Hive package that is used to read data from the binary format that is stored on the disk

@firoz3130
Copy link
Author

Screenshot (220)

@@ -20,11 +20,10 @@ class UserAdapter extends TypeAdapter<User> {
authToken: fields[1] as String,
email: fields[3] as String,
name: fields[2] as String,
location: fields[6] as Location,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

removing a parameter doesn't seem like the way to fix the error message. Moreover this field defines a user and will be useful in the app

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants