appendText method
Implementation
FastBinary appendText(String text, {String? charset}) {
if (text.isEmpty) {
return this;
}
List<int> binary = QuickTextCodec.encode(text, charset: charset);
return appendList(binary);
}
FastBinary appendText(String text, {String? charset}) {
if (text.isEmpty) {
return this;
}
List<int> binary = QuickTextCodec.encode(text, charset: charset);
return appendList(binary);
}