Order constructor

Order({
  1. String? status,
  2. List<String>? authorizations,
  3. String? certificate,
  4. DateTime? expires,
  5. String? finalize,
  6. List<Identifiers>? identifiers,
  7. DateTime? notAfter,
  8. DateTime? notBefore,
  9. String? orderUrl,
})

Implementation

Order({
  this.status,
  this.authorizations,
  this.certificate,
  this.expires,
  this.finalize,
  this.identifiers,
  this.notAfter,
  this.notBefore,
  this.orderUrl,
});