build method
Apply styles and build Row as Widget
Example usage:
NikuRow([
Text("0"),
Text("1")
])
.mainAxis(MainAxisAlignment.center)
.crossCenter()
.append(Text("2"))
.build()
Implementation
Row build({Key? key}) => Row(
key: key,
children: this._children,
mainAxisAlignment: this._mainAxisAlignment,
mainAxisSize: this._mainAxisSize,
crossAxisAlignment: this._crossAxisAlignment,
textDirection: this._textDirection,
verticalDirection: this._verticalDirection,
textBaseline: this._textBaseline,
);