process method

  1. @override
Future<bool> process(
  1. Result input
)

Returns true if the input was successfully downloaded.

Implementation

@override

/// Returns `true` if the input was successfully downloaded.
Future<bool> process(Result input) {
  return _processGroup.process(input);
}