children property
The children that were passed in to this component when it was built.
Implementation
@override
List<dynamic>? get children {final value = _raw$ReactProps$children; if (value is List) return value; if (value == null) {return props.containsKey('children') ? const [] : null;} return [value];}
Implementation
List<dynamic>? get children {final value = _raw$ReactProps$children; if (value is List) return value; if (value == null) {return props.containsKey('children') ? const [] : null;} return [value];}@override
set children(List<dynamic>? value) => _raw$ReactProps$children = value;