Notifications constructor
Notifications({
- Iterable<
Notification> ? notifications,
Implementation
factory Notifications({
$core.Iterable<$2.Notification>? notifications,
}) {
final _result = create();
if (notifications != null) {
_result.notifications.addAll(notifications);
}
return _result;
}