ExifSLongValue constructor

ExifSLongValue(
  1. int value
)

Implementation

ExifSLongValue(int value)
    : value = Int32List(1) {
  this.value[0] = value;
}