Using the toListView based on List to make the List become a ListView
<Widget>[].toListView();
Using the toColumn based on List to make the List become a Column
<Widget>[].toColumn();
Using the toRow based on List to make the List become a Row
<Widget>[].toRow();
Using the toStack based on List to make the List become a Stack
<Widget>[].toStack();
Text("Flutter Declarative Synrax")
.withColor(Colors.pink)
.withFontSize(16)
.withFontWeight(FontWeight.w600)
.backgroundColor(Colors.blue);