description property

String get description

Human-readable description of this factor.

Implementation

String get description {
  switch (this) {
    case SpoofFactor.mockProvider:
      return 'Mock location provider';
    case SpoofFactor.developerOptionsEnabled:
      return 'Developer options enabled';
    case SpoofFactor.mockModeEnabled:
      return 'Mock mode active';
    case SpoofFactor.impossibleSpeed:
      return 'Impossible speed';
    case SpoofFactor.impossibleAltitudeChange:
      return 'Impossible altitude change';
    case SpoofFactor.suspiciousAccuracy:
      return 'Suspiciously perfect accuracy';
    case SpoofFactor.repeatedCoordinates:
      return 'Repeated coordinates';
    case SpoofFactor.timestampMismatch:
      return 'Timestamp mismatch';
    case SpoofFactor.noSatellites:
      return 'No GPS satellites';
    case SpoofFactor.missingAltitude:
      return 'Missing altitude';
    case SpoofFactor.providerInconsistency:
      return 'Provider inconsistency';
    case SpoofFactor.speedMismatch:
      return 'Speed mismatch';
    case SpoofFactor.spoofingAppDetected:
      return 'Spoofing app detected';
  }
}