ExifShortValue constructor

ExifShortValue(
  1. int value
)

Implementation

ExifShortValue(int value)
    : value = Uint16List(1) {
  this.value[0] = value;
}