borderRadiusTopLeftBottomRight method

AzInkWell borderRadiusTopLeftBottomRight(
  1. double double
)

Implementation

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