optgroup function

Node optgroup({
  1. bool? disabled,
  2. String? label,
  3. String? id,
  4. dynamic className,
  5. dynamic style,
  6. Map<String, dynamic> p = const {},
  7. @deprecated Map<String, dynamic> props = const {},
  8. Iterable<Node> c = const [],
  9. @deprecated Iterable<Node> children = const [],
})

Implementation

Node optgroup(
        {bool? disabled,
        String? label,
        String? id,
        className,
        style,
        Map<String, dynamic> p = const {},
        @deprecated Map<String, dynamic> props = const {},
        Iterable<Node> c = const [],
        @deprecated Iterable<Node> children = const []}) =>
    h(
        'optgroup',
        _apply([
          p,
          props
        ], {
          'disabled': disabled,
          'label': label,
          'id': id,
          'class': className,
          'style': style
        }),
        [...c, ...children]);