LocationIssueListener constructor
- void onLocationIssueChangedLambda(
- List<
LocationIssueType>
- List<
abstract class receiving notifications when the set of currently active location issues changes.
Location issues represent unexpected or degraded conditions affecting positioning quality, availability, or functionality. The LocationEngine monitors various positioning subsystems and aggregates detected issues into a unified snapshot delivered via this interface.
- Each callback delivers the complete current set of active issues.
- An empty list indicates all previously reported issues have cleared.
- Issues are transient by design and automatically removed once underlying conditions improve. No explicit clear/dismiss API is provided.
Implementation
factory LocationIssueListener(
void Function(List<LocationIssueType>) onLocationIssueChangedLambda,
) => LocationIssueListener$Lambdas(
onLocationIssueChangedLambda,
);