message property
String?
get
message
Main notification content.
Required for notifications.create
method.
Implementation
String? get message => _wrapped.message;
set
message
(String? v)
Implementation
set message(String? v) {
_wrapped.message = v;
}