radiusRight method

AzButton radiusRight(
  1. double double
)

Implementation

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