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