shareText static method
Share text via system share sheet
Implementation
static Future<void> shareText(String text, {String? subject}) async {
// ignore: deprecated_member_use
await Share.share(text, subject: subject);
}
Share text via system share sheet
static Future<void> shareText(String text, {String? subject}) async {
// ignore: deprecated_member_use
await Share.share(text, subject: subject);
}