borderRadiusLeft method

AzInkWell borderRadiusLeft(
  1. double double
)

Implementation

AzInkWell borderRadiusLeft(double double){
  _borderRadius = BorderRadius.only(
    topLeft:Radius.circular(double),
    bottomLeft:Radius.circular(double),
  );
  return this;
}