isFlexChild property
Whether the ResizeSensor is a child of a flex item. Necessary to apply the correct styling.
See this issue for details: code.google.com/p/chromium/issues/detail?id=346275
Default: false
Implementation
@override
bool? get isFlexChild =>
(props[_$key__isFlexChild__ResizeSensorProps] ?? null) as bool?;
Whether the ResizeSensor is a child of a flex item. Necessary to apply the correct styling.
See this issue for details: code.google.com/p/chromium/issues/detail?id=346275
Default: false
Implementation
@override
set isFlexChild(bool? value) =>
props[_$key__isFlexChild__ResizeSensorProps] = value;