bool isValidWidths(List<int>? customWidths) { return customWidths != null && customWidths.isNotEmpty && !customWidths.any((e)=>e<0); }