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