setBody method

FirebaseMpnBuilder setBody(
  1. String? body
)

Sets the android.notification.body field.

  • body A string to be used for the android.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;
}