BrickListItem.ocean constructor

BrickListItem.ocean({List<Widget> widgets })

Constructs a BrickListItem with blue _wallColor and white _brickColor.

Implementation

BrickListItem.ocean({List<Widget> widgets})
    : _widgets = widgets,
      _wallColor = Colors.blue,
      _brickColor = Colors.white;