BytesValue constructor

BytesValue({
  1. Uint8List? value,
})

Implementation

BytesValue({Uint8List? value})
  : value = value ?? Uint8List(0),
    super(fullyQualifiedName);