create static method
return original data json
Implementation
static BlogFooterData create({
String special_type = "blogFooterData",
List<FootersData>? footers,
}) {
// BlogFooterData blogFooterData = BlogFooterData({
Map blogFooterData_data_create_json = {
"@type": special_type,
"footers": (footers != null) ? footers.toJson() : null,
};
blogFooterData_data_create_json.removeWhere((key, value) => value == null);
BlogFooterData blogFooterData_data_create =
BlogFooterData(blogFooterData_data_create_json);
return blogFooterData_data_create;
}