ExifSShortValue constructor

ExifSShortValue(
  1. int value
)

Implementation

ExifSShortValue(int value)
    : value = Int16List(1) {
  this.value[0] = value;
}