radiusPosition method
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;
}