network property
LayoutNetwork?
get
network
Gets or sets the LayoutNetwork used by this Layout, if any. The default value is null. Setting this property does not invalidate this layout. Not all kinds of layout make use of a LayoutNetwork. Call #createNetwork or #makeNetwork to create a network.
Implementation
_i3.LayoutNetwork? get network => _i4.getProperty(
this,
'network',
);
set
network
(LayoutNetwork? value)
Implementation
set network(_i3.LayoutNetwork? value) {
_i4.setProperty(
this,
'network',
value ?? _i5.undefined,
);
}