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