what-the-bank/sources/io/flutter/util/Predicate.java

7 lines
115 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package io.flutter.util;
/* loaded from: classes6.dex */
public interface Predicate<T> {
boolean test(T t);
}