build method
Build the widget.
Implementation
@override
Widget build(final BuildContext context) => PerformableActionsListTile(
actions: [
PerformableAction(
name: 'Copy value',
activator: copyShortcut,
invoke: subtitle.copyToClipboard,
),
PerformableAction(
name: 'Copy title',
activator: copyOtherShortcut,
invoke: title.copyToClipboard,
),
],
autofocus: autofocus,
title: Text(title),
subtitle: Text(subtitle),
onTap: () => '$title: $subtitle'.copyToClipboard(),
onLongPress: onLongPress,
);