ExifSByteValue constructor

ExifSByteValue(
  1. int value
)

Implementation

ExifSByteValue(int value)
    : value = Int8List(1) {
  this.value[0] = value;
}