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