openFileInput method

JObject? openFileInput(
  1. JString? string
)

from: public abstract java.io.FileInputStream openFileInput(java.lang.String string) The returned object must be released after use, by calling the release method.

Implementation

jni$_.JObject? openFileInput(
  jni$_.JString? string,
) {
  final _$string = string?.reference ?? jni$_.jNullReference;
  return _openFileInput(
    reference.pointer,
    _id_openFileInput.pointer,
    _$string.pointer,
  ).object<jni$_.JObject?>();
}