radiusPosition method

AzButton radiusPosition(
  1. double topLeft,
  2. double topRight,
  3. double bottomRight,
  4. double bottomLeft,
)

Implementation

AzButton radiusPosition(double topLeft, double topRight, double bottomRight, double bottomLeft){
  _shape = MaterialStateProperty.all(
    RoundedRectangleBorder(
        borderRadius: BorderRadius.only(
          topLeft:Radius.circular(topLeft),
          topRight:Radius.circular(topRight),
          bottomRight:Radius.circular(bottomRight),
          bottomLeft:Radius.circular(bottomLeft),
        )
    ),
  );
  return this;
}