DestinationData constructor

DestinationData({
  1. required String label,
  2. IconData? icon,
  3. List<DestinationData>? children,
})

Implementation

DestinationData({
  required this.label,
  this.icon,
  this.children,
});