width property

String width

The width column.

In android, the value of this column maybe null.

In iOS/macOS, the value of this column not null.

Implementation

String get width {
  if (isAndroid) {
    return 'width';
  } else if (isDarwin) {
    return 'pixelWidth';
  } else {
    throw UnsupportedError('Unsupported platform with width');
  }
}