SigningProfileRevocationRecord.fromJson constructor

SigningProfileRevocationRecord.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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