divider method

AutoLayout divider({
  1. Color? color,
  2. double? thickness,
})

Implementation

AutoLayout divider({Color? color, double? thickness}) {
  return this
    .._divider = Divider(
      color: color,
      thickness: thickness,
      height: thickness,
    );
}