Point constructor

Point({
  1. String? code = '0',
  2. required List<Point> children,
  3. int? depth,
  4. String? letter,
  5. String name = '',
  6. bool isClassificationNode = false,
})

Implementation

Point({
  this.code = '0',
  required this.children,
  this.depth,
  String? letter,
  this.name = '',
  this.isClassificationNode = false,
}) : letter = letter?.toUpperCase();