tfoot function
Implementation
Node tfoot(
{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(
'tfoot',
_apply([p, props], {'id': id, 'class': className, 'style': style}),
[...c, ...children]);