toJson method
Implementation
Map<dynamic, dynamic> toJson() => {
"birthday": birthday == null ? null : birthday,
"gender": gender == null ? null : gender,
"name": name == null ? null : name,
"id": id == null ? null : id,
"picture": picture == null ? null : picture?.toJson(),
};