blob: 1f746808df9e0e819a1cc710d5822807d1d97d7a [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.
/// A kind of a media device.
///
/// See: https://developer.mozilla.org/en-US/docs/Web/API/MediaDeviceInfo/kind
abstract class MediaDeviceKind {
/// A video input media device kind.
static const videoInput = 'videoinput';
/// An audio input media device kind.
static const audioInput = 'audioinput';
/// An audio output media device kind.
static const audioOutput = 'audiooutput';
}