ViewSwitcherData constructor

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

Implementation

const ViewSwitcherData({
  this.icon,
  this.title,
  this.badge,
}) : assert(
        icon != null || title != null,
        """Icon and title both can't be null""",
      );