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 5 package io.flutter.view; 6 7 /** 8 * A class containing arguments for entering a FlutterNativeView's isolate for 9 * the first time. 10 */ 11 public class FlutterRunArguments { 12 public String bundlePath; 13 public String entrypoint; 14 public String libraryPath; 15 } 16