ExifLongValue constructor

ExifLongValue(
  1. int value
)

Implementation

ExifLongValue(int value)
    : value = Uint32List(1) {
  this.value[0] = value;
}