Blob constructor

Blob(
  1. Iterable<int> bytes_list, {
  2. bool isTypeStance = false,
})

Implementation

Blob(Iterable<int> bytes_list, {super.isTypeStance = false}) : super(values_type: Nat8()) {
    if (bytes_list.length > 0) {
        this.addAll_bytes(bytes_list);
    }
}