MapTile constructor

const MapTile({
  1. Key? key,
  2. required String keyName,
  3. required List<MapEntry> items,
  4. bool expanded = false,
  5. required int depth,
})

Implementation

const MapTile({
  Key? key,
  required this.keyName,
  required this.items,
  this.expanded = false,
  required this.depth,
}) : super(key: key);