div function

FlintElement div({
  1. Map<String, Object?> props = const {},
  2. List<Object?> children = const [],
})

Creates a raw div element.

Implementation

FlintElement div({
  Map<String, Object?> props = const {},
  List<Object?> children = const [],
}) => h('div', props: props, children: children);