StreamInfo constructor

StreamInfo({
  1. DateTime? createdAt,
  2. String? description,
  3. List<StreamFile>? files,
  4. DateTime? lastUpdatedAt,
  5. String? roleArn,
  6. String? streamArn,
  7. String? streamId,
  8. int? streamVersion,
})

Implementation

StreamInfo({
  this.createdAt,
  this.description,
  this.files,
  this.lastUpdatedAt,
  this.roleArn,
  this.streamArn,
  this.streamId,
  this.streamVersion,
});