UIExpando constructor

UIExpando({
  1. Any? header,
  2. 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;
}