UIDivider constructor
UIDivider({
- UILength? thickness,
- 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;
}