copy method

  1. @override
BufferImage copy()
override

A copy of this BufferImage

Implementation

@override
BufferImage copy() {
  return BufferImage._(
    Uint8List.fromList(_buffer.buffer.asUint8List()).buffer.asByteData(),
    _width,
    _height,
  );
}