Radius2.topLeft constructor

Radius2.topLeft(
  1. double value
)

Creates BorderRadius with only topLeft corner

Implementation

Radius2.topLeft(double value)
    : super.only(
        topLeft: Radius.circular(value),
      );