setInt8 method

void setInt8(
  1. int n, [
  2. int byteOffset = 0
])

Sets n as a Int8 at byteOffset.

Implementation

void setInt8(int n, [int byteOffset = 0]) =>
    asByteData().setInt8(byteOffset, n);