write4Byte static method

void write4Byte(
  1. List stream,
  2. int value
)

Implementation

static void write4Byte(List stream, int value){
  stream.add((value >> 24) & 0xFF);
  stream.add((value >> 16) & 0xFF);
  stream.add((value >> 8) & 0xFF);
  stream.add(value & 0xFF);
 }