getAtomicWeight static method

double? getAtomicWeight(
  1. String element
)

Get the atomic weight of a specific element.

Implementation

static double? getAtomicWeight(String element) {
  return _atomicWeights[element];
}