getStrongPointer static method

Pointer<Void> getStrongPointer(
  1. Object object
)

Implementation

static Pointer<Void> getStrongPointer(Object object) {
  if (object is DartBaseClass) {
    return object.strongPointer;
  }
  return nullptr;
}