ExifDoubleValue constructor

ExifDoubleValue(
  1. double value
)

Implementation

ExifDoubleValue(double value)
    : value = Float64List(1) {
  this.value[0] = value;
}