create static method
return original data json
Implementation
static JsonDart create({
String? special_type,
}) {
Map jsonCreate = {
"@type": special_type,
};
jsonCreate.forEach((key, value) {
try {
if (value == null) {
jsonCreate.remove(value);
// jsonCreate[key] = value;
}
} catch (e, stack) {
print("Azka ${e.toString()}, ${stack.toString()}");
}
});
return JsonDart(jsonCreate);
}