fieldOrNull method

V? fieldOrNull(
  1. K key
)

Implementation

V? fieldOrNull(K key) => key.testAccess(this) ? key.getIn(this) : null;