Line data Source code
1 : import 'package:flutter/widgets.dart'; 2 : 3 : class ShowBubbleNotification extends PalGlobalNotification { 4 : final bool isVisible; 5 1 : ShowBubbleNotification(this.isVisible); 6 : } 7 : 8 : // Global notifications 9 : class PalGlobalNotification extends Notification {} 10 : 11 : class ShowHelpersListNotification extends PalGlobalNotification {} 12 : 13 : // class ShowBubbleNotification extends PalGlobalNotification {} 14 : // End