copy method

Future<void> copy(
  1. String text
)

Implementation

Future<void> copy(String text) async {
  await FlutterClipboard.copy(text);
}