brOnly function

BorderRadius brOnly([
  1. num? topLeft,
  2. num? topRight,
  3. num? bottomLeft,
  4. num? bottomRight,
])

Implementation

BorderRadius brOnly([num? topLeft, num? topRight, num? bottomLeft, num? bottomRight]) => BorderRadius.only(
      topLeft: topLeft != null ? Radius.circular(topLeft.toDouble()) : Radius.zero,
      topRight: topRight != null ? Radius.circular(topRight.toDouble()) : Radius.zero,
      bottomLeft: bottomLeft != null ? Radius.circular(bottomLeft.toDouble()) : Radius.zero,
      bottomRight: bottomRight != null ? Radius.circular(bottomRight.toDouble()) : Radius.zero,
    );