getFileStreamPath method

File? getFileStreamPath(
  1. JString? string
)

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

Implementation

File? getFileStreamPath(
  jni$_.JString? string,
) {
  final _$string = string?.reference ?? jni$_.jNullReference;
  return _getFileStreamPath(
    reference.pointer,
    _id_getFileStreamPath.pointer,
    _$string.pointer,
  ).object<File?>();
}