of_the_vector_nat8 static method

Blob of_the_vector_nat8(
  1. Vector<Nat8> vecnat8
)

Implementation

static Blob of_the_vector_nat8(Vector<Nat8> vecnat8) {
    return Blob(vecnat8.map<int>((Nat8 nat8byte)=>nat8byte.value).toList());
}