right static method

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

Implementation

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