setBody method
- String? body
Sets the android.notification.body
field.
body
A string to be used for theandroid.notification.body
field value, or null to clear it.
Returns this MpnBuilder object, for fluent use.
Implementation
FirebaseMpnBuilder setBody(String? body) {
_body = body;
return this;
}