Material shape defines shape of highlight. Like this I think
Material(
borderRadius: BorderRadius.circular(10),
color: Colors.grey(),
child: InkResponse(
highlightShape : BoxShape.rectangle,
borderRadius: BorderRadius.circular(10),
onTap: (){},
child: Container(),
),
);