writeBytes method
Writes raw bytes to a file in app-private storage.
Implementation
Future<String?> writeBytes(String fileName, Uint8List bytes) {
_validateFileName(fileName);
return NexoraSdkPlatform.instance.writeBytes(fileName, bytes);
}
Writes raw bytes to a file in app-private storage.
Future<String?> writeBytes(String fileName, Uint8List bytes) {
_validateFileName(fileName);
return NexoraSdkPlatform.instance.writeBytes(fileName, bytes);
}