Bubble constructor

const Bubble({
  1. required String title,
  2. required TextStyle titleStyle,
  3. required Color iconColor,
  4. required Color bubbleColor,
  5. required IconData icon,
  6. required dynamic onPress(),
})

Implementation

const Bubble(
    {required this.title,
    required this.titleStyle,
    required this.iconColor,
    required this.bubbleColor,
    required this.icon,
    required this.onPress});