UIDivider constructor

UIDivider({
  1. UILength? thickness,
  2. UIColorRef? color,
})

Implementation

factory UIDivider({
  UILength? thickness,
  UIColorRef? color,
}) {
  final result = create();
  if (thickness != null) result.thickness = thickness;
  if (color != null) result.color = color;
  return result;
}