CreateMessageItemRequest constructor

CreateMessageItemRequest({
  1. StringValue? title,
  2. 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;
}