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