bottom static method

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

Implementation

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