Atom constructor

const Atom({
  1. required String base,
  2. List<String> dirMods = const [],
  3. List<String> funcMods = const [],
  4. int range = 1,
  5. Modality modality = Modality.both,
})

Implementation

const Atom({
  required this.base,
  this.dirMods = const [],
  this.funcMods = const [],
  this.range = 1,
  this.modality = Modality.both,
});