Row constructor
Row({})
Creates a row with optional child content and styles.
Implementation
Row({
Object? child,
List<Object?> children = const [],
String? className,
Map<String, Object?> props = const {},
Map<String, Object?> style = const {},
DartStyle? dartStyle,
}) : super(
'div',
props: mergeComponentProps(
props,
className: className,
defaultStyle: const {'display': 'flex', 'flex-direction': 'row'},
dartStyle: dartStyle,
style: style,
),
children: normalizeChildren(child, children),
);