shareOnOtherCopy static method

Future<String?> shareOnOtherCopy({
  1. String? text,
})

Implementation

static Future<String?> shareOnOtherCopy({String? text}) async {
  Share.share(text!);

  return "success";
}