copyPhoneNumber static method

void copyPhoneNumber(
  1. String phoneNumber
)

Implementation

static void copyPhoneNumber(String phoneNumber) {
  Clipboard.setData(ClipboardData(text: phoneNumber));
  Fluttertoast.showToast(msg: S.of().chatMessageCopySuccess);
}