toJson method
Creates a json from the object
Implementation
Map toJson() {
return {
'total_count': totalCount,
'photos': photos,
}..removeWhere((_, v) => v == null);
}
Creates a json from the object
Map toJson() {
return {
'total_count': totalCount,
'photos': photos,
}..removeWhere((_, v) => v == null);
}