shareGeneral method

Future<bool> shareGeneral({
  1. String? text,
  2. List<String>? filePaths,
})

Triggers the system's native share sheet.

Implementation

Future<bool> shareGeneral({
  String? text,
  List<String>? filePaths,
}) {
  throw UnimplementedError('shareGeneral() has not been implemented.');
}