NotificationScheme constructor

NotificationScheme({
  1. String? description,
  2. String? expand,
  3. int? id,
  4. String? name,
  5. List<NotificationSchemeEvent>? notificationSchemeEvents,
  6. List<int>? projects,
  7. Scope? scope,
  8. String? self,
})

Implementation

NotificationScheme(
    {this.description,
    this.expand,
    this.id,
    this.name,
    List<NotificationSchemeEvent>? notificationSchemeEvents,
    List<int>? projects,
    this.scope,
    this.self})
    : notificationSchemeEvents = notificationSchemeEvents ?? [],
      projects = projects ?? [];