com-dot-app-sancharsaathi-1-5-0.apk
Download file
package io.flutter.view;
import io.flutter.embedding.engine.FlutterJNI;
public final class FlutterCallbackInformation {
public final String callbackClassName;
public final String callbackLibraryPath;
public final String callbackName;
private FlutterCallbackInformation(String str, String str2, String str3) {
this.callbackName = str;
this.callbackClassName = str2;
this.callbackLibraryPath = str3;
}
public static FlutterCallbackInformation lookupCallbackInformation(long j4) {
return FlutterJNI.nativeLookupCallbackInformation(j4);
}
}
Download file