px method

AzButton px({
  1. required double x,
})

Implementation

AzButton px({required double x}){
  _padding = MaterialStateProperty.all(EdgeInsets.symmetric(horizontal: x));
  return this;
}