as you see in this picture it shows error when iam using this model class how to solve this problem.
I tried but it’s not working.
2
You are wrong syntax, replace all of yours = with : will solve problem
=
:
the Map‘s key/value pairs are linked with a : not a =, so in your code instead of doing this:
Map
key = value,
change it to this:
key: value,
and the same thing for your class.
class
Click here to cancel reply.
2
Answers
You are wrong syntax, replace all of yours
=
with:
will solve problemthe
Map
‘s key/value pairs are linked with a:
not a=
, so in your code instead of doing this:change it to this:
and the same thing for your
class
.