// Copyright 2019 The Chromium Authors. All rights reserved.// Use of this source code is governed by a BSD-style license that can be// found in the LICENSE file.import'../runner/flutter_command.dart';/// This command is run when generating the app-jit snapshot for the tool, so it cannot access the Cache/// or any artifacts that haven't been downloaded yet.classTrainingCommandextendsFlutterCommand{@overrideStringgetdescription=>'training run for app-jit snapshot';@overrideStringgetname=>'training';@overrideboolgethidden=>true;@overrideboolgetshouldUpdateCache=>false;@overrideFuture<FlutterCommandResult>runCommand()async{// This command does not do anything yet :).returnnull;}}