hash static method

int hash(
  1. {required String name}
)
override

Function to generate a lookup ID for heading by its unique string key.

Implementation

static int hash({required String name}) {
  return fastHash(name);
}