25 lines
802 B
Java
25 lines
802 B
Java
|
package o;
|
||
|
|
||
|
import android.content.Context;
|
||
|
import io.flutter.plugin.common.BinaryMessenger;
|
||
|
import io.flutter.plugin.common.StandardMessageCodec;
|
||
|
import io.flutter.plugin.platform.PlatformView;
|
||
|
import io.flutter.plugin.platform.PlatformViewFactory;
|
||
|
import java.util.Map;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public final class KUq extends PlatformViewFactory {
|
||
|
private final BinaryMessenger d;
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
public KUq(BinaryMessenger binaryMessenger) {
|
||
|
super(StandardMessageCodec.INSTANCE);
|
||
|
this.d = binaryMessenger;
|
||
|
}
|
||
|
|
||
|
@Override // io.flutter.plugin.platform.PlatformViewFactory
|
||
|
public final PlatformView create(Context context, int i, Object obj) {
|
||
|
return new mel(context, this.d, i, (Map) obj);
|
||
|
}
|
||
|
}
|