withData static method
Implementation
static FastBinary withData(List<int> bytes) {
FastBinary binary = make();
if (bytes.isEmpty) {
return make();
}
return binary.appendList(bytes);
}
static FastBinary withData(List<int> bytes) {
FastBinary binary = make();
if (bytes.isEmpty) {
return make();
}
return binary.appendList(bytes);
}