copyRect method

  1. @override
void copyRect(
  1. int sourceTop,
  2. int sourceLeft,
  3. int sourceBottom,
  4. int sourceRight,
  5. int sourcePage,
  6. int destinationTop,
  7. int destinationLeft,
  8. int destinationPage,
)
override

Implementation

@override
void copyRect(
  int sourceTop,
  int sourceLeft,
  int sourceBottom,
  int sourceRight,
  int sourcePage,
  int destinationTop,
  int destinationLeft,
  int destinationPage,
) {
  _buffer.copyRect(
    sourceTop,
    sourceLeft,
    sourceBottom,
    sourceRight,
    sourcePage,
    destinationTop,
    destinationLeft,
    destinationPage,
  );
}