diff --git a/packages/flutter/lib/src/rendering/table.dart b/packages/flutter/lib/src/rendering/table.dart index 33fd5490f9..b15d941adb 100644 --- a/packages/flutter/lib/src/rendering/table.dart +++ b/packages/flutter/lib/src/rendering/table.dart @@ -535,7 +535,7 @@ class RenderTable extends RenderBox { /// Row decorations fill the horizontal and vertical extent of each row in /// the table, unlike decorations for individual cells, which might not fill /// either. - List get rowDecorations => List.unmodifiable(_rowDecorations ?? const []); + List get rowDecorations => List.unmodifiable(_rowDecorations ?? const []); // _rowDecorations and _rowDecorationPainters need to be in sync. They have to // either both be null or have same length. List? _rowDecorations;