blob: 6865aa4a9024da5309b50eca843552470022c29d [file] [log] [blame] [edit]
// 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.
/// A request to run the application's main method.
class RunRequest {
RunRequest();
Map<String, dynamic> toJson() => {};
factory RunRequest.fromJson(Map<String, dynamic> json) {
return RunRequest();
}
}