blob: 40f8c703fa9fd31c364e1a418156dbc722bbfad9 [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.
import 'camera_android_camerax_platform_interface.dart';
/// Android Camera implented with the CameraX library.
class CameraAndroidCamerax {
/// Returns platform version of this instance.
Future<String?> getPlatformVersion() {
return CameraAndroidCameraxPlatform.instance.getPlatformVersion();
}
}