mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 01:52:26 -06:00
20 lines
631 B
Java
20 lines
631 B
Java
package io.flutter.view;
|
|
|
|
import io.flutter.embedding.engine.FlutterJNI;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class FlutterCallbackInformation {
|
|
public final String callbackClassName;
|
|
public final String callbackLibraryPath;
|
|
public final String callbackName;
|
|
|
|
public static FlutterCallbackInformation lookupCallbackInformation(long j) {
|
|
return FlutterJNI.nativeLookupCallbackInformation(j);
|
|
}
|
|
|
|
private FlutterCallbackInformation(String str, String str2, String str3) {
|
|
this.callbackName = str;
|
|
this.callbackClassName = str2;
|
|
this.callbackLibraryPath = str3;
|
|
}
|
|
}
|