buttonShare static method

Widget buttonShare({
  1. String? subject,
  2. String? text,
  3. String? url,
  4. List<String>? files,
  5. Function? builder,
  6. Function? onTap,
  7. WidgetStyleRF? style,
})

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!,
  );
}