| Index: sky/sdk/lib/widgets/fixed_height_scrollable.dart
|
| diff --git a/sky/sdk/lib/widgets/fixed_height_scrollable.dart b/sky/sdk/lib/widgets/fixed_height_scrollable.dart
|
| index 0e0a41dd31df28fc1c60f5842ad90244e6b144cb..d2ba07ff0b558864f73ddb16aeeb1ff036ab6ffb 100644
|
| --- a/sky/sdk/lib/widgets/fixed_height_scrollable.dart
|
| +++ b/sky/sdk/lib/widgets/fixed_height_scrollable.dart
|
| @@ -10,8 +10,8 @@ import 'package:sky/widgets/scrollable.dart';
|
|
|
| abstract class FixedHeightScrollable extends Scrollable {
|
|
|
| - FixedHeightScrollable({ String key, this.itemHeight, Color backgroundColor, this.padding })
|
| - : super(key: key, backgroundColor: backgroundColor) {
|
| + FixedHeightScrollable({ String key, this.itemHeight, this.padding })
|
| + : super(key: key) {
|
| assert(itemHeight != null);
|
| }
|
|
|
|
|