CreateNotificationSchemeDetails constructor

CreateNotificationSchemeDetails({
  1. String? description,
  2. required String name,
  3. List<NotificationSchemeEventDetails>? notificationSchemeEvents,
})

Implementation

CreateNotificationSchemeDetails(
    {this.description,
    required this.name,
    List<NotificationSchemeEventDetails>? notificationSchemeEvents})
    : notificationSchemeEvents = notificationSchemeEvents ?? [];