AppNotificationBuilder constructor

const AppNotificationBuilder({
  1. Key? key,
  2. required Widget builder(
    1. BuildContext context,
    2. AppNotificationState state
    ),
  3. bool buildWhen(
    1. AppNotificationState oldState,
    2. AppNotificationState state
    )?,
})

Implementation

const AppNotificationBuilder({
  Key? key,
  required this.builder,
  this.buildWhen,
}) : super(key: key);