CyberTab constructor

const CyberTab({
  1. required String label,
  2. required String viewName,
  3. String cpName = "",
  4. String strParameter = "",
  5. dynamic objectData,
  6. IconData? icon,
})

Implementation

const CyberTab({
  required this.label,
  required this.viewName,
  this.cpName = "",
  this.strParameter = "",
  this.objectData,
  this.icon,
});