defaultShape static method

MaterialStateProperty<OutlinedBorder> defaultShape({
  1. double roundRadius = 5,
})

Implementation

static MaterialStateProperty<OutlinedBorder> defaultShape({
  double roundRadius = 5,
}) =>
    MaterialStateProperty.all(
      RoundedRectangleBorder(
        borderRadius: BorderRadius.circular(roundRadius),
      ),
    );