| 1 | import 'package:flutter/foundation.dart'; |
| 2 | import 'package:cake_wallet/src/screens/pin_code/pin_code_widget.dart'; |
| 3 | |
| 4 | class PinCode extends PinCodeWidget { |
| 5 | PinCode(void Function(String pin, PinCodeState state) onFullPin, |
| 6 | void Function(String pin) onChangedPin, int initialPinLength, bool hasLengthSwitcher, Key key) |
| 7 | : super( |
| 8 | key: key, |
| 9 | onFullPin: onFullPin, |
| 10 | onChangedPin: onChangedPin, |
| 11 | hasLengthSwitcher: hasLengthSwitcher, |
| 12 | initialPinLength: initialPinLength); |
| 13 | |
| 14 | @override |
| 15 | PinCodeState createState() => PinCodeState(); |
| 16 | } |