hashAttributes function

int hashAttributes(
  1. Attributes base
)

Implementation

int hashAttributes(Attributes base) => Object.hashAllUnordered(
      base.entries.map((e) => Object.hash(e.key, e.value)),
    );