save static method

Future<String> save(
  1. Uint8List bytes,
  2. String fileName
)

Throws because the active platform has no NRB file-save implementation.

Implementation

static Future<String> save(Uint8List bytes, String fileName) {
  throw UnsupportedError(
    'NRB local file saving is not supported on this platform.',
  );
}