PhoneNumberText constructor

const PhoneNumberText({
  1. Key? key,
  2. TextStyle? textStyle,
  3. String? prefixText,
  4. String? phoneNumber,
  5. dynamic onCopy(
    1. String?
    )?,
})

Implementation

const PhoneNumberText({
  super.key,
  this.textStyle,
  this.prefixText,
  this.phoneNumber,
  this.onCopy,
});