Uint32 constructor

Uint32(
  1. int value
)

Implementation

Uint32(int value)
    : super(
          numberOfBytesRequired: 4,
          constructorCallback: Uint32.new,
          value: value);