PlutusBytes constructor

PlutusBytes({
  1. required List<int> value,
})

Constructs a PlutusBytes instance with the given value.

Implementation

PlutusBytes({required List<int> value}) : value = value.asImmutableBytes;