body property
Property getter and setter for body:
Implementation
@override IMessageBody? get body => _body;
Implementation
@override set body(IMessageBody? body) {
this._body = body;
wrapped['body'] = jsonLiteral(body);
}
Property getter and setter for body:
@override IMessageBody? get body => _body;
@override set body(IMessageBody? body) {
this._body = body;
wrapped['body'] = jsonLiteral(body);
}