class Line::Message::Builder::Flex::Separator

Represents a separator component in a LINE Flex Message.

Separator components are used to create a visual separation between components within a container. They draw a horizontal line that helps organize the layout and improve readability.

Example

Line::Message::Builder.with do
  flex alt_text: "Separator Example" do
    bubble do
      body do
        text "Section 1"
        separator
        text "Section 2"
      end
    end
  end
end

See also: