radiusTopLeftBottomRight method

AzContainer radiusTopLeftBottomRight(
  1. double double
)

Implementation

AzContainer radiusTopLeftBottomRight(double double){
  _radius = BorderRadius.only(
    topLeft:Radius.circular(double),
    bottomRight:Radius.circular(double),
  );
  return this;
}