AppFloatingActionBtn constructor

const AppFloatingActionBtn({
  1. Key? key,
  2. required VoidCallback onPressed,
  3. String label = '',
  4. IconData icon = Icons.add,
  5. String? tag,
})

Implementation

const AppFloatingActionBtn({
  super.key,
  required this.onPressed,
  this.label = '',
  this.icon = Icons.add,
  this.tag,
});