top static method

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

Implementation

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