height property

String height

The height column.

In android, the value of this column maybe null.

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

Implementation

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