ASN1GeneralizedTime constructor

ASN1GeneralizedTime(
  1. DateTime? dateTimeValue, {
  2. int tag = ASN1Tags.GENERALIZED_TIME,
})

Create an ASN1GeneralizedTime entity with the given BigInt dateTimeValue.

Implementation

ASN1GeneralizedTime(this.dateTimeValue, {int tag = ASN1Tags.GENERALIZED_TIME})
    : super(tag: tag);