// Copyright 2014 The Flutter Authors. All rights reserved.// Use of this source code is governed by a BSD-style license that can be// found in the LICENSE file.constStringkIncrement='increment';constStringkCommit='commit';constStringkRemoteName='remote';constStringkJustPrint='just-print';constStringkYes='yes';constStringkForce='force';constStringkSkipTagging='skip-tagging';constStringkUpstreamRemote='https://github.com/flutter/flutter.git';constList<String>kReleaseChannels=<String>['stable','beta','dev','master',];/// Cast a dynamic to String and trim.StringstdoutToString(dynamicinput){finalStringstr=inputasString;returnstr.trim();}