ResponseSecurityCodes enum

ResponseSecurityCodes Available errors.

tampered used when current package signature doesn't match with the one you think should be (both iOs and Android)

notTampered used when current package signature does match with the one you think should be (both iOs and Android)

genericError simple generic error

unavailable if you ask for a specific method and it's not available (maybe for the specific platform, like FlutterSecurity.hasBundleBeenCompromised() that isn't available on Android)

missingParametersError when you ask for a method that needs a parameter and it cant find it

Inheritance

Constructors

ResponseSecurityCodes()
const

Values

tampered → const ResponseSecurityCodes
notTampered → const ResponseSecurityCodes
genericError → const ResponseSecurityCodes
unavailable → const ResponseSecurityCodes
missingParametersError → const ResponseSecurityCodes

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
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

Constants

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