BtnIconAddWithLoading constructor

BtnIconAddWithLoading({
  1. Key? key,
  2. required dynamic onTap()?,
  3. Color color = Colors.blue,
  4. IconData icon = Icons.add,
  5. String tooltip = '',
})

Implementation

BtnIconAddWithLoading(
    {Key? key, required this.onTap, this.color = Colors.blue, this.icon = Icons.add, this.tooltip = ''})
    : super(key: key);