Sequence constructor
Implementation
Sequence(
{required this.seqType, required this.value, this.isTypeBlock = true}) {
if (seqType == TYPE_RELATIVE_TIMELOCK && (value < 1 || value > 0xffff)) {
throw ArgumentError('Sequence should be between 1 and 65535');
}
}