isFlexChild property

  1. @override
bool? isFlexChild

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___$ResizeSensorPropsMixin] ?? null) as bool?;
  1. @override
void isFlexChild=(bool? value)

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___$ResizeSensorPropsMixin] = value;