I'm bit confused with the scripts that I saw recently. I want some explanation about it. I googled it and found that, this mechanism is being used from while but I couldn't understand it . Please don't downgrade my question if there any wrong.
I'm an android developer and start to being legend. :D
public final class ClassName{
public static ClassName initSDK(@NonNull @GuiContext Context context) {
return new ClassName(context);
}
private ClassName(Context guiContext) {
startSDK(guiContext);
}
}
what is initSDK. how it's call and what is the mechanism?
Thank you for your valuable time!