DocumentId constructor

DocumentId(
  1. Uint8List bytes
)

Wraps the given 16 bytes.

Implementation

DocumentId(this.bytes)
  : assert(bytes.length == 16, 'A DocumentId is 16 bytes');