canResume method

  1. @override
Future<bool> canResume(
  1. StateHead head
)
override

Checks if server supports requesting a portion of the data.

Implementation

@override
Future<bool> canResume(StateHead head) {
  logger?.info('worker: Sending range check request...');
  return _conn.canResume(head.url);
}