startInstrumentation method

bool startInstrumentation(
  1. JObject? componentName,
  2. JString? string,
  3. JObject? bundle
)

from: public abstract boolean startInstrumentation(android.content.ComponentName componentName, java.lang.String string, android.os.Bundle bundle)

Implementation

core$_.bool startInstrumentation(
  jni$_.JObject? componentName,
  jni$_.JString? string,
  jni$_.JObject? bundle,
) {
  final _$componentName = componentName?.reference ?? jni$_.jNullReference;
  final _$string = string?.reference ?? jni$_.jNullReference;
  final _$bundle = bundle?.reference ?? jni$_.jNullReference;
  return _startInstrumentation(
    reference.pointer,
    _id_startInstrumentation.pointer,
    _$componentName.pointer,
    _$string.pointer,
    _$bundle.pointer,
  ).boolean;
}