UISection constructor

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