uuidb function

List<int?> uuidb()

Implementation

List<int?> uuidb() {
  var buf = List<int?>.filled(16, null); // -> []
  _uuid.v4buffer(buf as List<int>);
  return buf;
}