encode static method

Map<String, dynamic> encode(
  1. Section value
)

Implementation

static Map<String, dynamic> encode(Section value) {
	Map<String, dynamic> entityAsMap = {
		"section" : value.section,
		"fields" : value.fields.map((x0) => StructureElement.encode(x0)).toList(),
		"description" : value.description,
		"keywords" : value.keywords?.map((x0) => x0).toList()
	};
	return entityAsMap;
}