factory Row({ $core.Iterable<Column>? columns, }) { final result = create(); if (columns != null) result.columns.addAll(columns); return result; }