androidFile static method

Future<bool> androidFile({
  1. required MIMEType mimeType,
  2. required String path,
  3. String? title,
})

Implementation

static Future<bool> androidFile({required MIMEType mimeType, required String path, String? title}) {
  return android(parameters: ShareItAndroidParameters.file(mimeType: mimeType, path: path, title: title)).present();
}