blob: 8430ee23f92d06272329dd10b32fec85a5db908d [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 there are no pending platform messages in the Flutter's
* platform channels.
*/
class NoPendingPlatformMessagesCondition extends WaitCondition {
public NoPendingPlatformMessagesCondition() {
super("NoPendingPlatformMessagesCondition");
}
}