borderShape property

OutlinedBorder borderShape

Implementation

OutlinedBorder get borderShape {
  switch (shape) {
    case BoxShape.circle:
      return CircleBorder(
        side: effectiveBorderSide ?? BorderSide.none,
      );
    default:
      return RoundedRectangleBorder(
        side: effectiveBorderSide ?? BorderSide.none,
        borderRadius: borderRadius ?? BorderRadius.zero,
      );
  }
}