Represents a section in a list message.
Each section has a title and a list of Anu.Row items.
Examples
iex> rows = [Anu.Row.new("s", "Small"), Anu.Row.new("m", "Medium")]
iex> Anu.Section.new("Sizes", rows)
%Anu.Section{title: "Sizes", rows: [%Anu.Row{id: "s", title: "Small", description: nil}, %Anu.Row{id: "m", title: "Medium", description: nil}]}
Summary
Functions
Creates a new section with the given title and list of rows.