left static method

Border left({
  1. Color? color,
  2. double? width,
})

Implementation

static Border left({Color? color, double? width}) {
  return Border(
    left: side(color: color, width: width),
  );
}