writeAsBytes abstract method
Writes bytes
to a binary file located at id
.
Returns a Future that completes after writing the asset out.
- Throws a
PackageNotFoundException
ifid.package
is not found. - Throws an
InvalidOutputException
if the output was not valid (that is,id
is not in allowedOutputs)
NOTE: Most Builder
implementations should not need to await
this
Future since the runner will be responsible for waiting until all outputs
are written.
Implementation
@override
Future<void> writeAsBytes(AssetId id, FutureOr<List<int>> bytes);