SigningProfileRevocationRecord.fromJson constructor
Implementation
factory SigningProfileRevocationRecord.fromJson(Map<String, dynamic> json) {
return SigningProfileRevocationRecord(
revocationEffectiveFrom:
timeStampFromJson(json['revocationEffectiveFrom']),
revokedAt: timeStampFromJson(json['revokedAt']),
revokedBy: json['revokedBy'] as String?,
);
}