content property
dynamic
get
content
Implementation
get content {
if (this.isList) {
return this.pagination;
} else if (this.isDatabase) {
return this.database;
} else if (this.isPage) {
return this.page;
} else {
return null;
}
}