ScriptPushDataMatcher constructor

ScriptPushDataMatcher(
  1. int size
)

Implementation

ScriptPushDataMatcher(this.size) {
  if (size == 0 || size > 0xffffffff) {
    throw ArgumentError.value(size, "this.size", "outside of range");
  }
}