validate method

void validate()
inherited

Implementation

void validate() {
  if (length % 8 != 0 || length < 0 || length > 256) {
    throw Exception('Invalid length for int type: was $length');
  }
}