radius method

AzButton radius(
  1. double double
)

Implementation

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