withTopRight method

BorderRadiusBuilder withTopRight(
  1. double value
)

Adds topRight radius and returns builder for chaining

Implementation

BorderRadiusBuilder withTopRight(double value) {
  _topRight = value;
  return this;
}