useRoundedBorder method

dynamic useRoundedBorder({
  1. double? rounded,
  2. Color? color,
  3. double? width,
  4. BorderStyle? style,
})

Implementation

useRoundedBorder({
  double? rounded,
  Color? color,
  double? width,
  BorderStyle? style,
}) =>
    $parent
      ..useRoundedBorder(
        rounded: rounded,
        color: color,
        width: width,
        style: style,
      );