showTicks property
Whether to show the ticks on the axis of the gauge.
Defaults to true.
Widget build(BuildContext context) {
   return Container(
       child: SfRadialGauge(
         axes:<RadialAxis>[RadialAxis(
          showTicks: false,
           )]
       ));
}
Implementation
final bool showTicks;