isRegistered property

bool get isRegistered

Whether the native runtime is registered with the shared registry.

Implementation

static bool get isRegistered {
  final bindings = _bindings;
  if (bindings == null) return _isRegistered;
  _isRegistered = bindings.isRegistered;
  return _isRegistered;
}