borderAll method

T borderAll({
  1. Color? color,
  2. double? width,
  3. BorderStyle? style,
  4. double? strokeAlign,
})

Sets all borders.

Implementation

T borderAll({
  Color? color,
  double? width,
  BorderStyle? style,
  double? strokeAlign,
}) {
  final side = BorderSideMix(
    color: color,
    strokeAlign: strokeAlign,
    style: style,
    width: width,
  );

  return border(BorderMix.all(side));
}