blob: d5f05e6121a9b5ab6adef86b88fa8317aa595894 [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/// The status of the location service authorization.
enum LocationAuthorizationStatus {
/// The authorization of the location service is not determined.
notDetermined,
/// This app is not authorized to use location.
restricted,
/// User explicitly denied the location service.
denied,
/// User authorized the app to access the location at any time.
authorizedAlways,
/// User authorized the app to access the location when the app is visible to them.
authorizedWhenInUse,
/// Status unknown.
unknown
}