getByPeriod static method
- int period
Gets all elements in a specific period
Implementation
static List<ElementData> getByPeriod(int period) {
return periodicTable.values.where((element) => element.period == period).toList();
}
Gets all elements in a specific period
static List<ElementData> getByPeriod(int period) {
return periodicTable.values.where((element) => element.period == period).toList();
}