mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-12-23 10:11:52 +03:00
add missing enum values
This commit is contained in:
parent
6a509463d4
commit
ea8ff38f76
@ -77,7 +77,11 @@ enum PinPolicy {
|
||||
@JsonValue(0x02)
|
||||
once,
|
||||
@JsonValue(0x03)
|
||||
always;
|
||||
always,
|
||||
@JsonValue(0x04)
|
||||
matchOnce,
|
||||
@JsonValue(0x05)
|
||||
matchAlways;
|
||||
|
||||
const PinPolicy();
|
||||
|
||||
|
@ -84,6 +84,8 @@ const _$PinPolicyEnumMap = {
|
||||
PinPolicy.never: 1,
|
||||
PinPolicy.once: 2,
|
||||
PinPolicy.always: 3,
|
||||
PinPolicy.matchOnce: 4,
|
||||
PinPolicy.matchAlways: 5,
|
||||
};
|
||||
|
||||
_$PivStateMetadataImpl _$$PivStateMetadataImplFromJson(
|
||||
|
Loading…
Reference in New Issue
Block a user