i have a factory to convert a json file to a class
Map<String, dynamic>? tokenProperties;
factory Token.fromJson(Map<String, dynamic> map) {
return Token(
tokenProperties: map['properties']
);
}
i receive in "map" param (keys are dynamics, never the same keys and values.)
when i want to affect the value tokenProperties: map['properties']
i don't why but the quote disappear... see the exception:
The full class:
// Dart imports:
import 'dart:convert';
/// SPDX-License-Identifier: AGPL-3.0-or-later
// To parse this JSON data, do
//
// final token = tokenFromJson(jsonString);
Token tokenFromJson(String str) => Token.fromJson(json.decode(str));
String tokenToJson(Token data) => jsonEncode(data.toJson());
String tokenToJsonForTxDataContent(Token data) {
return jsonEncode(data.toJsonForTxDataContent());
}
class Token {
Token(
{this.address,
this.genesis,
this.name,
this.id,
this.supply,
this.type,
this.symbol,
this.tokenProperties});
String? address;
String? genesis;
String? name;
String? id;
int? supply;
String? type;
String? symbol;
Map<String, dynamic>? tokenProperties;
factory Token.fromJson(Map<String, dynamic> map) {
return Token(
address: map['address'],
genesis: map['genesis'],
name: map['name'],
id: map['id'],
supply: map['supply'] == null
? null
: int.tryParse(map['supply'].toString()),
type: map['type'],
symbol: map['symbol'],
tokenProperties: map['properties']);
}
Map<String, dynamic> toJson() => <String, dynamic>{
'address': address,
'genesis': genesis,
'name': name,
'id': id,
'supply': supply,
'type': type,
'symbol': symbol,
'properties': tokenProperties,
};
Map<String, dynamic> toJsonForTxDataContent() => <String, dynamic>{
'name': name,
'supply': supply,
'type': type,
'symbol': symbol,
'properties': tokenProperties,
};
}
I am currently building an app where the user is able to store List items as favorites on their device. Debugging my app I am running in the following error:
Exception has occurred.
_CastError (type 'Null' is not a subtype of type 'Widget' in type cast)
This is my code:
LogEntry _$LogEntryFromJson(Map<String, dynamic> json) {
return LogEntry(
mechanismId: json['mechanismId'] as int?,
timestamp: DateTime.parse(json['timestamp'] as String),
navigation: json['navigation'] as Widget);
}
Map<String, dynamic> _$LogEntryToJson(LogEntry instance) => <String, dynamic>{
'mechanismId': instance.mechanismId,
'timestamp': instance.timestamp.toIso8601String(),
'navigation:': instance.navigation,
};
The mechanismID is the respective ID of a List item and the navigation stands for the route of the detail page.
LogEntry _$LogEntryFromJson(Map<String, dynamic> json) {
return LogEntry(
mechanismId: json['mechanismId'] as int?,
timestamp: DateTime.parse(json['timestamp'] as String),
navigation: json['navigation'] as Widget?);
}
I was wondering if anyone could help, please? I'm very new to Flutter/Dart here and I'm trying to parse a nested JSON response, into a model. I've used the "JSON to Dart" generator, which seems to have worked well, except when it is parsing "responses".
I suspect the issue is because the "responses" vary in results - sometimes it could be null, a single array, or multiple.
Running .runtimeType has shown me that it can return null if it's empty, List<dynamic> if there is only one array, and _InternalLinkedHashMap<String, dynamic> when there are multiple.
I have tried many different approaches to try and resolve this and looked through many different StackOverflow answers, but nothing seems to work. The error simply changes with every change I make.
Below is my code and my error.
The error:
_TypeError (type '(dynamic) => Null' is not a subtype of type '(String, dynamic) => void' of 'f')
The code:
class VideoComments {
int id;
String comment;
int uid;
int likes;
bool isLikedByUser;
String posterProfilePic;
String posterUsername;
List<Responses> responses;
VideoComments(
{this.id,
this.comment,
this.uid,
this.likes,
this.isLikedByUser,
this.posterProfilePic,
this.posterUsername,
this.responses});
VideoComments.fromJson(Map<String, dynamic> json) {
print("RESP: ${json['responses'].runtimeType}");
id = json['id'];
comment = json['comment'];
uid = json['uid'];
likes = json['likes'];
isLikedByUser = json['isLikedByUser'];
posterProfilePic = json['poster_profile_pic'];
posterUsername = json['poster_username'];
if (json['responses'] != null) {
List<Responses> responses = [];
json['responses'].forEach((v) {
responses.add(new Responses.fromJson(v));
});
}
}
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['id'] = this.id;
data['comment'] = this.comment;
data['uid'] = this.uid;
data['likes'] = this.likes;
data['isLikedByUser'] = this.isLikedByUser;
data['poster_profile_pic'] = this.posterProfilePic;
data['poster_username'] = this.posterUsername;
if (this.responses != null) {
data['responses'] = this.responses.map((v) => v.toJson()).toList();
}
return data;
}
}
class Responses {
int id;
String comment;
int uid;
int likes;
bool isLikedByUser;
Responses({this.id, this.comment, this.uid, this.likes, this.isLikedByUser});
Responses.fromJson(Map<String, dynamic> json) {
id = json['id'];
comment = json['comment'];
uid = json['uid'];
likes = json['likes'];
isLikedByUser = json['isLikedByUser'];
}
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['id'] = this.id;
data['comment'] = this.comment;
data['uid'] = this.uid;
data['likes'] = this.likes;
data['isLikedByUser'] = this.isLikedByUser;
return data;
}
}
Any help is appreciated!
Just for the fun of it - I tried to implement the same thing using json_serializable since I recommended it in my comment. Hopefully this shows you that it is not that complicated - in fact, it is simpler than actually figuring out how to code it your self.
First I started with the blank Flutter project.
Second, I added required dependencies to pubspec.yaml:
dependencies:
flutter:
sdk: flutter
cupertino_icons: ^1.0.2
# Added this
json_annotation: ^4.0.1
dev_dependencies:
flutter_test:
sdk: flutter
# and these two...
build_runner: ^2.0.4
json_serializable: ^4.1.3
Next thing, I created a separate file json_demo.dart, and took part of your code. I also added few things:
part instruction that will include generated json mapping file
For each class added .fromJson named constructor
For each class added toJson() method.
Added #JsonSerializable() for each class - this is how the tool knows which class to look at
Added #JsonKey(name: 'poster_profile_pic') and #JsonKey(name: 'poster_username') - since your filed names are different than Json property names (poster_profile_pic vs posterProfilePic), you need to tell the tool how to rename it back and forth.
Made all properties nullable (since I'm using latest version with null-safety)
import 'package:json_annotation/json_annotation.dart';
part 'json_demo.g.dart';
#JsonSerializable()
class VideoComments {
int? id;
String? comment;
int? uid;
int? likes;
bool? isLikedByUser;
#JsonKey(name: 'poster_profile_pic')
String? posterProfilePic;
#JsonKey(name: 'poster_username')
String? posterUsername;
List<Responses>? responses;
VideoComments(
{this.id,
this.comment,
this.uid,
this.likes,
this.isLikedByUser,
this.posterProfilePic,
this.posterUsername,
this.responses});
factory VideoComments.fromJson(Map<String, dynamic> json) => _$VideoCommentsFromJson(json);
Map<String, dynamic> toJson() => _$VideoCommentsToJson(this);
}
#JsonSerializable()
class Responses {
int? id;
String? comment;
int? uid;
int? likes;
bool? isLikedByUser;
Responses({this.id, this.comment, this.uid, this.likes, this.isLikedByUser});
factory Responses.fromJson(Map<String, dynamic> json) => _$ResponsesFromJson(json);
Map<String, dynamic> toJson() => _$ResponsesToJson(this);
}
Now, simply run flutter pub run build_runner build, and you get json_demo.g.dart file generated:
// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'json_demo.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
VideoComments _$VideoCommentsFromJson(Map<String, dynamic> json) {
return VideoComments(
id: json['id'] as int?,
comment: json['comment'] as String?,
uid: json['uid'] as int?,
likes: json['likes'] as int?,
isLikedByUser: json['isLikedByUser'] as bool?,
posterProfilePic: json['poster_profile_pic'] as String?,
posterUsername: json['poster_username'] as String?,
responses: (json['responses'] as List<dynamic>?)
?.map((e) => Responses.fromJson(e as Map<String, dynamic>))
.toList(),
);
}
Map<String, dynamic> _$VideoCommentsToJson(VideoComments instance) =>
<String, dynamic>{
'id': instance.id,
'comment': instance.comment,
'uid': instance.uid,
'likes': instance.likes,
'isLikedByUser': instance.isLikedByUser,
'poster_profile_pic': instance.posterProfilePic,
'poster_username': instance.posterUsername,
'responses': instance.responses,
};
Responses _$ResponsesFromJson(Map<String, dynamic> json) {
return Responses(
id: json['id'] as int?,
comment: json['comment'] as String?,
uid: json['uid'] as int?,
likes: json['likes'] as int?,
isLikedByUser: json['isLikedByUser'] as bool?,
);
}
Map<String, dynamic> _$ResponsesToJson(Responses instance) => <String, dynamic>{
'id': instance.id,
'comment': instance.comment,
'uid': instance.uid,
'likes': instance.likes,
'isLikedByUser': instance.isLikedByUser,
};
Note how it correctly renamed the json property based on the annotation:
posterProfilePic: json['poster_profile_pic'] as String?,
One more thing to notice - this is how it fixed the problem you had:
responses: (json['responses'] as List<dynamic>?)
?.map((e) => Responses.fromJson(e as Map<String, dynamic>))
.toList(),
From now on, each time you change your class, simple re-run the build script.
As you explore further, you'll see that it can handle enums, it has nice annotations to automatically rename all fields in a class from snake case to kebab case (or whatever it is called). But most importantly - does it in a consistent and tested way. As you add more classes, it will really help you save some time...
And to make your life easier, create user snippet in VS Code (File->Preferences->User snippets):
{
"Json Serializible": {
"prefix": "serial",
"body": [
"factory ${1}.fromJson(Map<String, dynamic> json) => _$${1}FromJson(json);",
"Map<String, dynamic> toJson() => _$${1}ToJson(this);"
]
}
}
Here's how to use it:
Copy the name of your class
start typing 'serial' - this is the shortcut for the code snippet
Select the snippet and paste the class name - it will paste it 3 times where needed.
See - simpler than learning how to manually encode/decode Json....
As #Andrija suggested, that is certainly a good way, if you don't want to use that then go ahead with the vscode extension bendixma.dart-data-class-generator, create your class and keep your variables, just do ctrl + shift + p -> Search data class, hit enter when you find dart data class generator from class properties.
Thank you everyone for your responses. I have no resolved the issue.
I have changed my code (in respect to the issue area) to the following:
if (json['responses'].length > 0) {
json['responses'].forEach((e) => responses.add(Responses.fromJson(e)));
} else if (json['responses'].length == 0 || json['responses'] == null) {
responses = null;
}
and on my web server, I have wrapped the "responses" in another (parent) array.
it is an error related to data type. Please cross the the JSON response and Dart class variable data type. String variable can't be an Int or Double value. Or do one thing change all variable into Dynamic type.
But yes it is not good practice to have dynamic as datatype for all variable.
class UserData
{
int id;
String email;
String first_name;
String last_name;
String avatar;
UserData({this.id, this.email, this.first_name, this.last_name, this.avatar});
factory UserData.fromJson(Map<String, dynamic> json) => _$UserDataFromJson(json);
Map<String, dynamic> toJson() => _$UserDataToJson(this);
}
UserData _$UserDataFromJson(Map<String, dynamic> json) {
return UserData(
id: json['id'] as int,
email: json['email'] as String,
first_name: json['first_name'] as String,
last_name: json['last_name'] as String,
avatar: json['avatar'] as String,
);
}
Map<String, dynamic> _$UserDataToJson(UserData instance) => <String, dynamic>{
'id': instance.id,
'email': instance.email,
'first_name': instance.first_name,
'last_name': instance.last_name,
'avatar': instance.avatar,
};
Will dart automatically parse data if it found toJson and fromJson methods in model class? If I use methods with different it will work or not? I am looking for help thank you.
Yes you can set JSON Data to your models through these methods for model classes in Dart you can use
https://quicktype.io/
I'm trying to serialize a simple Dart class. As you can see, I added everything related to the serialization. The name of the file is ParamDescription.dart.
import 'package:json_annotation/json_annotation.dart';
part 'ParamDescription.g.dart';
#JsonSerializable()
class FxParamDescription {
String name;
double minValue;
double maxValue;
double defaultValue;
FxParamDescription(){
}
factory FxParamDescription.fromJson(Map<String, dynamic> json) => _$FxParamDescriptionFromJson(json);
Map<String, dynamic> toJson() => _$FxParamDescriptionFromJson(this);
}
I run flutter pub run build_runner build and it finishes without errors.
When trying to compile, I get this error
^
lib/fx/ParamDescription.dart:24:65: Error: The argument type 'FxParamDescription' can't be assigned to the parameter type 'Map<String, dynamic>'.
- 'FxParamDescription' is from 'package:flutter_app/fx/ParamDescription.dart' ('lib/fx/ParamDescription.dart').
- 'Map' is from 'dart:core'.
Map<String, dynamic> toJson() => _$FxParamDescriptionFromJson(this);
^
lib/fx/ParamDescription.dart:24:36: Error: A value of type 'FxParamDescription' can't be assigned to a variable of type 'Map<String, dynamic>'.
- 'FxParamDescription' is from 'package:flutter_app/fx/ParamDescription.dart' ('lib/fx/ParamDescription.dart').
- 'Map' is from 'dart:core'.
Map<String, dynamic> toJson() => _$FxParamDescriptionFromJson(this);
Change
Map<String, dynamic> toJson() => _$FxParamDescriptionFromJson(this);
To
Map<String, dynamic> toJson() => _$FxParamDescriptionToJson(this);
You're using the wrong generated function.