PinCodeWidget constructor
PinCodeWidget(
- PinCodeProvider _pinCodeProvider, {
- Color iconColor = WidgetStyleConstants.deviceIconColor,
- Color textColor = WidgetStyleConstants.darkTextColor,
- double iconSize = 60.0,
- 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;
}