I am trying to set JSON values in My Model Class. But its returning error as Invalid argument(s) (input): Must not be null
UserAccount.dart
import 'package:json_annotation/json_annotation.dart';
part 'userAccount.g.dart';
@JsonSerializable(nullable: true,disallowUnrecognizedKeys:true,includeIfNull:true)
class UserAccount{
String id;
String name;
String email;
String profile_pic;
String country;
String phoneNumber;
bool isNewUser;
int role;
int account_status;
String token;
DateTime token_expiry;
String facebook_profile_url;
String google_profile_url;
String twitter_profile_url;
int matchStixx_count;
DateTime created_at;
DateTime updated_at;
UserAccount({
this.id,
this.name,
this.email,
this.profile_pic,
this.country,
this.phoneNumber,
this.isNewUser,
this.role,
this.account_status,
this.token,
this.token_expiry,
this.facebook_profile_url,
this.google_profile_url,
this.twitter_profile_url,
this.matchStixx_count,
this.created_at,
this.updated_at
});
factory UserAccount.fromJson(Map<String,dynamic> json) => _$UserAccountFromJson(json);
Map<String,dynamic> toJson() =>_$UserAccountToJson(this);
}
UserAccount.g.dart
part of 'userAccount.dart';
UserAccount _$UserAccountFromJson(Map<String, dynamic> json) {
return UserAccount(
id: json['_id'] as String,
name: json['name'] as String,
email: json['email'] as String,
profile_pic: json['profile_pic'] as String,
country: json['country'] as String,
phoneNumber: json['phoneNumber'] as String,
isNewUser: json['isNewUser'] as bool,
role: json['role'] as int,
account_status: json['account_status'] as int,
token: json['token'] as String,
token_expiry: DateTime.parse(json['token_expiry'] as String),
facebook_profile_url: json['facebook_profile_url'] as String,
google_profile_url: json['google_profile_url'] as String,
twitter_profile_url: json['twitter_profile_url'] as String,
matchStixx_count: json['matchStixx_count'] as int,
created_at: DateTime.parse(json['created_at'] as String),
updated_at: DateTime.parse(json['updated_at'] as String)
);
}
Map<String, dynamic> _$UserAccountToJson(UserAccount instance) =>
<String, dynamic>{
'id': instance.id,
'name': instance.name,
'email': instance.email,
'profile_pic': instance.profile_pic,
'country': instance.country,
'phoneNumber': instance.phoneNumber,
'isNewUser': instance.isNewUser,
'role': instance.role,
'account_status': instance.account_status,
'token': instance.token,
'token_expiry': instance.token_expiry,
'facebook_profile_url': instance.facebook_profile_url,
'google_profile_url': instance.google_profile_url,
'twitter_profile_url': instance.twitter_profile_url,
'matchStixx_count': instance.matchStixx_count,
'created_at': instance.created_at,
'updated_at': instance.updated_at,
};
JSON Data - this JSON is stored in ( responseBody["userData"] )
{_id: 1, name:some name, email: [email protected], profile_pic: https://xyz/yzz.png, isNewUser: true, role: 1, account_status: 1, matchStixx_count: 20, created_at: 2020-05-15T06:41:24.528Z, __v: 0}
Init Of Model
userAccount = new UserAccount.fromJson(responseBody["userData"]); //geting error here