ViewSwitcherData constructor

const ViewSwitcherData({
  1. IconData? icon,
  2. String? title,
})

Implementation

const ViewSwitcherData({
  this.icon,
  this.title,
}) : assert(icon != null || title != null);