TelPhoneView constructor

TelPhoneView({
  1. Key? key,
  2. required String phone,
  3. EdgeInsets? margin,
  4. EdgeInsets? padding,
  5. BoxDecoration? boxDecoration,
  6. TextStyle? textStyle,
})

Implementation

TelPhoneView(
    {super.key,
    required this.phone,
    this.margin,
    this.padding,
    this.boxDecoration,
    this.textStyle});