isUnsigned method

bool isUnsigned([
  1. int size = 8
])

Check if this is an unsigned integer with the specified size.

size must be between 1 and 8, both inclusive, else an ArgumentError gets thrown.

Implementation

bool isUnsigned([int size = 8]) => isUnsignedInteger(this, size);