isLoggable static method

bool isLoggable(
  1. JString? string,
  2. int i
)

from: static public native boolean isLoggable(java.lang.String string, int i)

Implementation

static bool isLoggable(
  jni$_.JString? string,
  int i,
) {
  final _$string = string?.reference ?? jni$_.jNullReference;
  return _isLoggable(_class.reference.pointer,
          _id_isLoggable as jni$_.JMethodIDPtr, _$string.pointer, i)
      .boolean;
}