notBottomRight static method

BorderRadius notBottomRight(
  1. double radius
)

Gives BorderRadius to all side except bottomRight corner of a rectangle.

Implementation

static BorderRadius notBottomRight(double radius) =>
    _copyWith(bottomLeft: radius, topLeft: radius, topRight: radius);