BorderRadiusAttribute.bottomRight constructor

BorderRadiusAttribute.bottomRight(
  1. double size
)

The bottom right radius

Implementation

factory BorderRadiusAttribute.bottomRight(double size) {
  return BorderRadiusAttribute(
    bottomRight: size,
  );
}