PredictionTile constructor

const PredictionTile({
  1. Key? key,
  2. required Prediction prediction,
  3. ValueChanged<Prediction>? onTap,
  4. TextStyle? resultTextStyle,
})

Implementation

const PredictionTile({
  super.key,
  required this.prediction,
  this.onTap,
  this.resultTextStyle,
});