blob: 4548b28b66bd7e1f256e368290a242ee8627494a [file] [log] [blame]
// 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.
package androidx.test.espresso.flutter.internal.protocol.impl;
/** Represents a condition that waits until no transient callbacks in the Flutter framework. */
class NoTransientCallbacksCondition extends WaitCondition {
public NoTransientCallbacksCondition() {
super("NoTransientCallbacksCondition");
}
}