debugHandleCount property

int? debugHandleCount

Returns the number of open picture handles on this picture info.

Outside of debug mode, this returns null.

Implementation

int? get debugHandleCount {
  if (kDebugMode) {
    return _handles.length;
  }
  return null;
}