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