WebActionButton constructor

const WebActionButton({
  1. required IconData icon,
  2. required String label,
  3. VoidCallback? onTap,
  4. bool isPrimary = false,
})

Implementation

const WebActionButton({
  required this.icon,
  required this.label,
  this.onTap,
  this.isPrimary = false,
});