PinCodeWidget constructor

PinCodeWidget(
  1. PinCodeProvider _pinCodeProvider, {
  2. Color iconColor = WidgetStyleConstants.deviceIconColor,
  3. Color textColor = WidgetStyleConstants.darkTextColor,
  4. double iconSize = 60.0,
  5. Key? key,
})

Implementation

PinCodeWidget(this._pinCodeProvider,
    {Color iconColor = WidgetStyleConstants.deviceIconColor,
    Color textColor = WidgetStyleConstants.darkTextColor,
    double iconSize = 60.0,
    Key? key})
    : super(key: key) {
  this._iconColor = iconColor;
  this._textColor = textColor;
  this._iconSize = iconSize;
}