ChemicalElement constructor

const ChemicalElement({
  1. required String name,
  2. required String symbol,
  3. required String category,
  4. required String appearance,
  5. required MatterPhase stpPhase,
  6. required int number,
  7. required int period,
  8. required int row,
  9. required int column,
  10. required List<int> shells,
  11. required num atomicMass,
  12. num? molecularDensity,
  13. num? heatCapacity,
  14. num? meltingPoint,
  15. num? boilingPoint,
})

Implementation

const ChemicalElement(
    {required this.name,
    required this.symbol,
    required this.category,
    required this.appearance,
    required this.stpPhase,
    required this.number,
    required this.period,
    required this.row,
    required this.column,
    required this.shells,
    required this.atomicMass,
    this.molecularDensity,
    this.heatCapacity,
    this.meltingPoint,
    this.boilingPoint});