InspectorCard constructor

const InspectorCard({
  1. Key? key,
  2. required String name,
  3. String? description,
  4. IconData? icon,
  5. Color? accentColor,
  6. int priority = 0,
  7. VoidCallback? onTap,
})

Implementation

const InspectorCard({
  super.key,
  required this.name,
  this.description,
  this.icon,
  this.accentColor,
  this.priority = 0,
  this.onTap,
});