children property

List<TouchBarItem>? children
inherited

The subitems of this.

Implementation

List<TouchBarItem>? get children => _children;
void children=(List<TouchBarItem>? newValue)
inherited

Implementation

set children(List<TouchBarItem>? newValue) {
  this.updateProperty(
    'children',
    newValue: newValue?.map((item) => item.toMap()).toList(),
  );
  this._children = newValue;
}