GrantError constructor
- @JsonSerializable(includeIfNull: false)
const
GrantError(
{ - @Default('tools.ozone.verification.grantVerifications#grantError') String $type,
- required String error,
- required String subject,
- Map<String, dynamic>? $unknown,
})
Implementation
@JsonSerializable(includeIfNull: false)
const factory GrantError({
@Default('tools.ozone.verification.grantVerifications#grantError')
String $type,
/// Error message describing the reason for failure.
required String error,
/// The did of the subject being verified
required String subject,
Map<String, dynamic>? $unknown,
}) = _GrantError;