saveToDownloadsWeb static method

Future<bool> saveToDownloadsWeb(
  1. String content,
  2. String fileName,
  3. String extension
)

Stub method - should never be called on non-web platforms

Implementation

static Future<bool> saveToDownloadsWeb(
  String content,
  String fileName,
  String extension,
) async {
  throw UnsupportedError('Web downloads are only supported on web platform');
}