blob: 99347d356dbf9372bd6ecf985761e91054e2d6fa [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.
class ViewportMetrics {
final double devicePixelRatio;
final double physicalWidth;
final double physicalHeight;
const ViewportMetrics(
this.devicePixelRatio,
this.physicalWidth,
this.physicalHeight,
);
}