button function

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

Creates a raw button element.

Implementation

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