contentToPath method

Future<String> contentToPath(
  1. String contentUri, {
  2. bool rewrite = false,
})

content:// to path ,only supports Android devices

Implementation

Future<String> contentToPath(String contentUri, {bool rewrite = false}) {
  return GetSettingsPlatform.instance.contentToPath(contentUri, rewrite);
}