File.new$2 constructor

File.new$2(
  1. JString? string,
  2. JString? string1
)

from: public void <init>(java.lang.String string, java.lang.String string1) The returned object must be released after use, by calling the release method.

Implementation

factory File.new$2(
  jni$_.JString? string,
  jni$_.JString? string1,
) {
  final _$string = string?.reference ?? jni$_.jNullReference;
  final _$string1 = string1?.reference ?? jni$_.jNullReference;
  return _new$2(
    _class.reference.pointer,
    _id_new$2.pointer,
    _$string.pointer,
    _$string1.pointer,
  ).object<File>();
}