getRootDirectory function

  1. @Deprecated('Android specific APIs will be removed soon in order to be replaced with a new set of original cross-platform APIs.')
Future<Directory?> getRootDirectory()

Equivalent to Environment.getRootDirectory

Refer to details

Implementation

@Deprecated(
  'Android specific APIs will be removed soon in order to be replaced with a new set of original cross-platform APIs.',
)
Future<Directory?> getRootDirectory() async {
  const kGetRootDirectory = 'getRootDirectory';

  return invokeVoidEnvironmentMethod(kGetRootDirectory);
}