DEV Community

Ajay
Ajay

Posted on

Unhandled Exception: type '_InternalLinkedHashMap<dynamic, dynamic>' is not a subtype of type 'Map<String, dynamic>'

i am trying to use a json into another json but getting this error " Unhandled Exception: type '_InternalLinkedHashMap' is not a subtype of type 'Map'"

i am using jsonserializable this is my data file i want to use it in product file

import 'package:json_annotation/json_annotation.dart';

part 'data.g.dart';

@JsonSerializable()
class Data

Top comments (0)