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