Blob constructor

Blob([
  1. Iterable<int>? bytes_list
])

Implementation

Blob([Iterable<int>? bytes_list]) : super(values_type: Nat8()) {
    if (bytes_list != null && bytes_list.length > 0) {
        this.addAll_bytes(bytes_list);
    }
}