NotificationFailure constructor

const NotificationFailure({
  1. required String message,
  2. String? code,
  3. String? details,
  4. StackTrace? stackTrace,
})

Creates a new notification failure.

Implementation

const NotificationFailure({
  required this.message,
  this.code,
  this.details,
  this.stackTrace,
});