topRight static method

BorderRadius topRight(
  1. double radius
)

Creates a BorderRadius for the top-right corner of a rectangle.

radius: The radius value for the top-right corner. Returns a BorderRadius object with the specified top-right radius.

Implementation

static BorderRadius topRight(double radius) => _copyWith(topRight: radius);