getSharedDirectory static method
Returns the directory that is shared among both application and its services (Notification Service Extension, for example).
Implementation
static Future<String> getSharedDirectory() async {
final String url = await _platform.invokeMethod('getSharedDirectory');
return url.replaceFirst('file://', '');
}