getMaxConcurrentDownloads method

Future<int?> getMaxConcurrentDownloads()

Gets the maximum number of concurrent downloads supported by the platform. Returns null if the platform doesn't specify a limit.

Implementation

Future<int?> getMaxConcurrentDownloads() {
  throw UnimplementedError(
    'getMaxConcurrentDownloads() has not been implemented.',
  );
}