saveToRoot method
Implementation
@override
Future<String?> saveToRoot({
required Uint8List bytes,
required String fileName,
String? folderPath,
}) async {
final String? result = await methodChannel.invokeMethod('saveToRoot', {
'bytes': bytes,
'fileName': fileName,
'folderPath': folderPath,
});
return result;
}