copy a text to clipboard flutter code example
Example 1: copy to clipboard flutter
import 'package:flutter/services.dart';
ClipboardData data = ClipboardData(text: '<Text to copy goes here>');
await Clipboard.setData(data);
Example 2: copy option on text eidget flutter
SelectableText("Lorem ipsum...")