copy method

  1. @override
DownloadListener copy()
inherited

Instantiates and returns a functionally identical object to oneself.

Outside of tests, this method should only ever be called by InstanceManager.

Subclasses should always override their parent's implementation of this method.

Implementation

@override
DownloadListener copy() {
  return DownloadListener(onDownloadStart: onDownloadStart);
}