setInt32 method

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

Sets n as a Int32 at byteOffset.

Implementation

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