encode static method

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

Implementation

static Map<String, dynamic> encode(ApplicationSettings value) {
	Map<String, dynamic> entityAsMap = {
		"id" : value.id,
		"rev" : value.rev,
		"created" : value.created,
		"modified" : value.modified,
		"author" : value.author,
		"responsible" : value.responsible,
		"medicalLocationId" : value.medicalLocationId,
		"tags" : value.tags.map((x0) => CodeStub.encode(x0)).toList(),
		"codes" : value.codes.map((x0) => CodeStub.encode(x0)).toList(),
		"endOfLife" : value.endOfLife,
		"deletionDate" : value.deletionDate,
		"settings" : value.settings.map((k0, v0) => MapEntry(k0, v0))
	};
	return entityAsMap;
}