AuditMeta class

Context describing how and when an AuditReport was produced.

Annotations
  • @immutable

Constructors

AuditMeta({required String screenName, required String standard, required String toolVersion, required DateTime timestamp})
Creates an AuditMeta.
const
AuditMeta.fromJson(Map<String, dynamic> json)
Parses an AuditMeta from json.
factory

Properties

hashCode int
The hash code for this object.
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
screenName String
A human-readable name for the audited screen, e.g. CheckoutScreen.
final
standard String
The identifier of the standard pack the audit ran against, e.g. en301549_v3_2_1.
final
timestamp DateTime
When the report was produced (UTC).
final
toolVersion String
The version of attest that produced the report.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
The JSON representation of this metadata.
toString() String
A string representation of this object.
override

Operators

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