cells property

  1. @override
List<Cell> get cells
override

The flat list of cells representing the 2D grid.

Implementation

@override
List<Cell> get cells =>
    throw UnsupportedError('Flat cells access not supported on Viewport');
  1. @override
set cells (List<Cell> val)
override

The flat list of cells representing the 2D grid.

Implementation

@override
set cells(List<Cell> val) =>
    throw UnsupportedError('Flat cells access not supported on Viewport');