LipList.create constructor
LipList.create(
- List items, {
- RenderConfig renderConfig = const RenderConfig(),
Creates a new list with the given items.
Items can be strings, other LipLists (for nesting), or any object that can be converted to a string.
Implementation
factory LipList.create(
List<dynamic> items, {
RenderConfig renderConfig = const RenderConfig(),
}) {
return LipList(renderConfig: renderConfig).items(items);
}