width property

  1. @override
int get width
override

The width of the buffer in columns.

Implementation

@override
int get width => bounds.width;
  1. @override
set width (int val)
override

The width of the buffer in columns.

Implementation

@override
set width(int val) =>
    throw UnsupportedError('Cannot set width of a Viewport');