list property

dynamic list

Implementation

get list {
  if (this.isEmpty) {
    return [];
  } else if (this.isBlocksList) {
    return this.blocks;
  } else if (this.isDatabasesList) {
    return this.databases;
  }
}