City constructor

const City(
  1. String name,
  2. String code,
  3. List<County> children
)

Implementation

const City(this.name, this.code, this.children);