lazy property

bool lazy
final

Enables lazy reading of the list

If true, the returned unmodifiable list lazily reads objects on access. Therefore, the underlying buffer must not change while accessing the list.

If false, reads the whole list immediately on access.

Implementation

final bool lazy;