buttonShare static method
Implementation
static Widget buttonShare({
String? subject,
String? text,
String? url,
List<String>? files,
Function? builder,
Function? onTap,
WidgetStyleRF? style,
}) {
return ShareRF(
subject: subject!,
text: text!,
url: url!,
attachment: files!,
builder: builder!,
onTap: onTap!,
style: style!,
);
}