only method

  1. @override
T only({
  1. ColorDto? color,
  2. double? width,
  3. BorderStyle? style,
  4. double? strokeAlign,
})
override

Implementation

@override
T only({
  ColorDto? color,
  double? width,
  BorderStyle? style,
  double? strokeAlign,
}) {
  return builder(
    BorderSideDto(
      color: color,
      strokeAlign: strokeAlign,
      style: style,
      width: width,
    ),
  );
}