shareFile method

Future<void> shareFile({
  1. required String path,
  2. required String packageName,
  3. String title = "分享",
  4. void whenNotFoundApp()?,
})

Implementation

Future<void> shareFile({
  required String path,
  required String packageName,
  String title = "分享",
  void Function()? whenNotFoundApp,
}) {
  throw UnimplementedError('shareFile() has not been implemented.');
}