title property
String?
get
title
Title of the notification (e.g. sender name for email).
Required for notifications.create
method.
Implementation
String? get title => _wrapped.title;
set
title
(String? v)
Implementation
set title(String? v) {
_wrapped.title = v;
}