copyPhoneNumber static method

void copyPhoneNumber(
  1. String phoneNumber
)

Implementation

static void copyPhoneNumber(String phoneNumber) {
  Clipboard.setData(ClipboardData(text: phoneNumber));
  ChatUIToast.show(S.of().chatMessageCopySuccess);
}