canvas function

Node canvas({
  1. num? height,
  2. num? width,
  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 canvas(
        {num? height,
        num? width,
        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(
        'canvas',
        _apply([
          p,
          props
        ], {
          'height': height,
          'width': width,
          'id': id,
          'class': className,
          'style': style
        }),
        [...c, ...children]);