resolve method

  1. @override
BorderRadius resolve(
  1. TextDirection? direction
)
override

Convert this instance into a BorderRadius, so that the radii are expressed for specific physical corners (top-left, top-right, etc) rather than in a direction-dependent manner.

See also:

Implementation

@override
BorderRadius resolve(TextDirection? direction) => BorderRadius.only(
      topLeft: topLeft,
      topRight: topRight,
      bottomLeft: bottomLeft,
      bottomRight: bottomRight,
    );