This is the code json code from which I want to get all the keys were value is null
{
"service": "register",
"employee": {
"employeeId": "bcvfevse",
"officeId": null,
"email": null,
"name" : "Chetan Patil",
"position" : "Flutter Developer",
"number" : null
},
"device": {
"type": "android",
"uniqueId": "9774d56d682e549c"
}
}
I Want something like this ["number","email","officeId"] in "DART"
If you have something like this:
And in Dart you do something like:
Then if you print it out like this:
You get:
Let me know if that's what you're looking for.