diff --git a/lib/utils/kwargs_screen.dart b/lib/utils/kwargs_screen.dart index 7b09fc5..fe7c887 100644 --- a/lib/utils/kwargs_screen.dart +++ b/lib/utils/kwargs_screen.dart @@ -105,9 +105,9 @@ class TableWidget extends StatefulWidget { class _TableWidgetState extends State { TableRow _buildTableRow( - MapEntry rowData, - int index, - ) { + MapEntry rowData, + int index, + ) { return TableRow( children: [ _buildTableCell( @@ -201,10 +201,10 @@ class _TableWidgetState extends State { ), ...widget.tableData.asMap().entries.map( (entry) => _buildTableRow( - entry.value, - entry.key, - ), - ), + entry.value, + entry.key, + ), + ), ], ); }