type property
TemplateType?
get
type
Which type of notification to display.
Required for notifications.create
method.
Implementation
TemplateType? get type => _wrapped.type?.let(TemplateType.fromJS);
set
type
(TemplateType? v)
Implementation
set type(TemplateType? v) {
_wrapped.type = v?.toJS;
}