width property
double?
get
width
The width of the image file, unit is pixel.
Implementation
double? get width {
double? width;
final Map? metaDataMap = _metaDataMap;
if (metaDataMap != null) {
width = metaDataMap['width']?.toDouble();
}
return width;
}