borderWidth function

BorderAttribute borderWidth(
  1. double width
)

Border width for all border sides

Implementation

BorderAttribute borderWidth(double width) => BorderAttribute.all(
      BorderSideAttribute(width: width),
    );