pLTRB method

AzButton pLTRB(
  1. dynamic left,
  2. dynamic top,
  3. dynamic right,
  4. dynamic bottom,
)

Implementation

AzButton pLTRB(left,top,right,bottom){
  _padding = MaterialStateProperty.all(EdgeInsets.fromLTRB(left,top,right,bottom));
  return this;
}