platformPathExists function

Future<bool> platformPathExists(
  1. String path
)

Implementation

Future<bool> platformPathExists(String path) async {
  return path.isNotEmpty;
}