row method
Implementation
StyledRow row({
required List<Widget> children,
bool inherit = false,
Key? key,
Style? style,
}) {
return StyledRow(
style: merge(style),
key: key,
inherit: inherit,
children: children,
);
}
StyledRow row({
required List<Widget> children,
bool inherit = false,
Key? key,
Style? style,
}) {
return StyledRow(
style: merge(style),
key: key,
inherit: inherit,
children: children,
);
}