children property

  1. @override
List? get children
inherited

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];}
  1. @override
set children (List? value)
inherited

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;