build method

  1. @override
dynamic build(
  1. dynamic context
)

Implementation

@override
Widget build(BuildContext context) {
  return IconButton(
    onPressed: () => openFileShareDialog(context: context, file: file),
    icon: PhosphorIcon(PhosphorIcons.shareFat()),
  );
}