JobEntry constructor

JobEntry({
  1. required String arn,
  2. required DateTime createdAt,
  3. required ResponseDetails details,
  4. required String id,
  5. required State state,
  6. required Type type,
  7. required DateTime updatedAt,
  8. List<JobError>? errors,
})

Implementation

JobEntry({
  required this.arn,
  required this.createdAt,
  required this.details,
  required this.id,
  required this.state,
  required this.type,
  required this.updatedAt,
  this.errors,
});