import:
import 'package:flutter/services.dart';
And then Simply implement this:
onTap: () async {
await Clipboard.setData(ClipboardData(text: "your text"));
// copied successfully
},
import:
import 'package:flutter/services.dart';
And then Simply implement this:
onTap: () async {
await Clipboard.setData(ClipboardData(text: "your text"));
// copied successfully
},