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
build_runner generating json['id'] as String code which is not working in latest dart.
i am getting "type 'int' is not a subtype of type 'String' in type cast" error.
if i change "json['id'] as String" to json['id'].toString(), it's working.