DRMError enum Null safety
Constructors
- DRMError()
-
const
Values
- none → const DRMError
-
No error
- licenseOutOfDate → const DRMError
-
WARNING ERRORS > 10 License is out of date (check start and end date)
- licenseNoPasshphraseMatched → const DRMError
-
No passhrase matches the license
- certificateRevoked → const DRMError
-
CRITICAL ERRORS > 100 Certificate has been revoked in the CRL
- certificateSignatureInvalid → const DRMError
-
Certificate has not been signed by CA
- licenseSignatureDateInvalid → const DRMError
-
License has been issued by an expired certificate
- licenseSignatureInvalid → const DRMError
-
License signature does not match
- contextInvalid → const DRMError
-
The drm context is invalid
- contentKeyDecryptError → const DRMError
-
Unable to decrypt encrypted content key from user key
- userKeyCheckInvalid → const DRMError
-
User key check invalid
- contentDecryptError → const DRMError
-
Unable to decrypt encrypted content from content key
- unknown → const DRMError
-
Unknown
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent 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<
DRMError> -
A constant List of the values in this enum, in order of their declaration.
[none, licenseOutOfDate, licenseNoPasshphraseMatched, certificateRevoked, certificateSignatureInvalid, licenseSignatureDateInvalid, licenseSignatureInvalid, contextInvalid, contentKeyDecryptError, use…