getRadarType method
For police ("popo") reports - gets radar type
Implementation
String? getRadarType() {
if (type != 'popo' || details['detectionType'] != 'radar') return null;
return details['radarType'] as String?;
}
For police ("popo") reports - gets radar type
String? getRadarType() {
if (type != 'popo' || details['detectionType'] != 'radar') return null;
return details['radarType'] as String?;
}