DialPad constructor

DialPad({
  1. ValueSetter<String>? makeCall,
  2. ValueSetter<String>? keyPressed,
  3. bool? hideDialButton,
  4. bool? hideSubtitle = false,
  5. String? outputMask,
  6. Color? buttonColor,
  7. Color? buttonTextColor,
  8. Color? dialButtonColor,
  9. Color? dialButtonIconColor,
  10. IconData? dialButtonIcon,
  11. Color? dialOutputTextColor,
  12. Color? backspaceButtonIconColor,
  13. bool? enableDtmf,
})

Implementation

DialPad(
    {this.makeCall,
    this.keyPressed,
    this.hideDialButton,
    this.hideSubtitle = false,
    this.outputMask,
    this.buttonColor,
    this.buttonTextColor,
    this.dialButtonColor,
    this.dialButtonIconColor,
    this.dialButtonIcon,
    this.dialOutputTextColor,
    this.backspaceButtonIconColor,
    this.enableDtmf});