create static method

BlogFooterData create({
  1. String special_type = "blogFooterData",
  2. List<FootersData>? footers,
})
override

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;
}