right property

Implementation

static final RoundedRectangleBorder right = RoundedRectangleBorder(
  side: const BorderSide(
    color: Colors.transparent,
    width: 0,
  ),
  borderRadius: BorderRadius.only(
    topRight: BasicCorners.mainCornerRadius,
    bottomRight: BasicCorners.mainCornerRadius,
  ),
);