InAppNotification constructor

const InAppNotification({
  1. Key? key,
  2. required Widget child,
})

Creates an in-app notification system.

Implementation

const InAppNotification({
  Key? key,
  required this.child,
}) : super(key: key);