2018-11-07 12:24:35 -08:00
|
|
|
// Copyright 2013 The Flutter Authors. All rights reserved.
|
2018-08-07 12:42:22 -07:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
|
|
package io.flutter.view;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* A class containing arguments for entering a FlutterNativeView's isolate for
|
|
|
|
|
* the first time.
|
|
|
|
|
*/
|
|
|
|
|
public class FlutterRunArguments {
|
2018-12-10 12:19:22 -08:00
|
|
|
public String[] bundlePaths;
|
2018-08-07 12:42:22 -07:00
|
|
|
public String bundlePath;
|
|
|
|
|
public String entrypoint;
|
|
|
|
|
public String libraryPath;
|
2018-08-10 13:23:51 -07:00
|
|
|
public String defaultPath;
|
2018-08-07 12:42:22 -07:00
|
|
|
}
|