Dictionary constructor

Dictionary({
  1. int? address,
})

Implementation

Dictionary({int? address}) {
  logName = "Dictionary";

  _initDictionary(address);
}