blob: 13cd698db89a9951a7c4b2abd731e41de86c6581 [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.
// @dart = 2.6
part of engine;
class ViewportMetrics {
final double devicePixelRatio;
final double physicalWidth;
final double physicalHeight;
const ViewportMetrics(
this.devicePixelRatio,
this.physicalWidth,
this.physicalHeight,
);
}