Expected design: Image
This is how the current InputDecoration looks like. I want to give a dashed stroke circular border with adjustable gap values.
InputDecoration(
contentPadding: EdgeInsets.symmetric(vertical: 0, horizontal: 15.0),
filled: true,
fillColor: Colors.white,
focusedBorder: OutlineInputBorder(
borderSide: BorderSide(color: Kolors.accent, width: 5.0,),
borderRadius: BorderRadius.all(Radius.circular(40)),
),)