what-the-bank/sources/io/flutter/embedding/engine/FlutterOverlaySurface.java

23 lines
445 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package io.flutter.embedding.engine;
import android.view.Surface;
/* loaded from: classes6.dex */
public class FlutterOverlaySurface {
private final int id;
private final Surface surface;
public int getId() {
return this.id;
}
public Surface getSurface() {
return this.surface;
}
public FlutterOverlaySurface(int i, Surface surface) {
this.id = i;
this.surface = surface;
}
}