SolFixedBytes constructor

SolFixedBytes(
  1. int length
)

Implementation

SolFixedBytes(this.length) {
  if (length <= 0 || length > 32) {
    throw ArgumentError('bytes length must be in [1..32], got $length');
  }
}