Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
FlutterRunArguments.java
Go to the documentation of this file.
1// Copyright 2013 The Flutter Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5package io.flutter.view;
6
7/** A class containing arguments for entering a FlutterNativeView's isolate for the first time. */
8public class FlutterRunArguments {
9 public String bundlePath;
10 public String entrypoint;
11 public String libraryPath;
12}