height property

double? height

The height of the image file, unit is pixel.

Implementation

double? get height {
  double? height;
  final Map? metaDataMap = _metaDataMap;
  if (metaDataMap != null) {
    height = metaDataMap['height']?.toDouble();
  }
  return height;
}