-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathconnect_request.dart
33 lines (24 loc) · 1.02 KB
/
connect_request.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:built_collection/built_collection.dart';
import 'package:built_value/built_value.dart';
import 'package:built_value/serializer.dart';
part 'connect_request.g.dart';
/// A request to open DevTools.
abstract class ConnectRequest
implements Built<ConnectRequest, ConnectRequestBuilder> {
static Serializer<ConnectRequest> get serializer =>
_$connectRequestSerializer;
factory ConnectRequest([Function(ConnectRequestBuilder) updates]) =
_$ConnectRequest;
ConnectRequest._();
/// Whole app name.
String get appName;
/// Identifies a given application, across tabs/windows.
String get appId;
/// Identifies a given instance of an application, unique per tab/window.
String get instanceId;
/// The entrypoint for the Dart application.
BuiltList<String> get entrypoints;
}