UISection constructor
UISection({
- Any? child,
- bool? border,
Implementation
factory UISection({
$2.Any? child,
$core.bool? border,
}) {
final result = create();
if (child != null) result.child = child;
if (border != null) result.border = border;
return result;
}