bottomRad property

BorderRadius get bottomRad

Creates BorderRadius with bottom corners (bottomLeft and bottomRight) equal to this value

Implementation

BorderRadius get bottomRad => BorderRadius.only(
      bottomLeft: Radius.circular(toDouble()),
      bottomRight: Radius.circular(toDouble()),
    );