blob: 8022216ff8c87f7dbfd8df7120b18eef85762e22 [file] [log] [blame]
// Copyright 2019 The Chromium 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 'package:flutter/foundation.dart';
import 'package:flutter/services.dart';
import 'common/camera_channel.dart';
@visibleForTesting
class CameraTesting {
CameraTesting._();
static final MethodChannel channel = CameraChannel.channel;
static int get nextHandle => CameraChannel.nextHandle;
static set nextHandle(int handle) => CameraChannel.nextHandle = handle;
}