Cvm enum

Cardholder Verification Method.

Payment responses encode this as a number (0–3); the transaction-status (v2) endpoint encodes it as a string (PIN, SIGNATURE, NOCVM, UNKNOWN). fromValue accepts both.

Inheritance
Available extensions

Values

unknown → const Cvm
const Cvm(0)
signature → const Cvm
const Cvm(1)
pin → const Cvm
const Cvm(2)
noCvm → const Cvm
const Cvm(3)

Properties

code int
final
hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

fromValue(Object? value) Cvm?
Parses a CVM from either the numeric or the string form. Returns null when the value is missing or not recognised.

Constants

values → const List<Cvm>
A constant List of the values in this enum, in order of their declaration.