BsonBinary constructor

BsonBinary(
  1. int length, {
  2. int? subType,
})

Implementation

BsonBinary(int length, {int? subType})
    : _byteList = Uint8List(length),
      _subType = subType ?? subtypeBinary;