CityNode constructor

CityNode(
  1. String name,
  2. String code, [
  3. List<CityNode>? children
])

Implementation

CityNode(this.name, this.code, [this.children]);