CreateMessageItemRequest constructor
CreateMessageItemRequest({
- StringValue? title,
- StringValue? body,
Implementation
factory CreateMessageItemRequest({
$2.StringValue? title,
$2.StringValue? body,
}) {
final result = create();
if (title != null) result.title = title;
if (body != null) result.body = body;
return result;
}