LinkDeliveryGetResponse constructor

LinkDeliveryGetResponse({
  1. required LinkDeliverySessionStatus status,
  2. required DateTime createdAt,
  3. List<String>? publicTokens,
  4. DateTime? completedAt,
  5. required String requestId,
})

Implementation

LinkDeliveryGetResponse({
  required this.status,
  required this.createdAt,
  this.publicTokens,
  this.completedAt,
  required this.requestId,
});