clone method
Clones the entire buffer into a new buffer.
Implementation
Buffer clone() {
final b = cloneArea(bounds());
return b ?? Buffer.create(0, 0);
}
Clones the entire buffer into a new buffer.
Buffer clone() {
final b = cloneArea(bounds());
return b ?? Buffer.create(0, 0);
}