height property
String
get
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 || isOhos) {
return 'height';
} else if (isDarwin) {
return 'pixelHeight';
} else {
throw UnsupportedError('Unsupported platform with height');
}
}