mapPropsToHashCode function

int mapPropsToHashCode(
  1. Iterable props
)

Implementation

int mapPropsToHashCode(Iterable props) =>
    _finish(props.fold(
      0,
      (hash, object) => _combine(hash, object)
    ));