Sample constructor

Sample({
  1. String? arn,
  2. SampleType? type,
  3. String? url,
})

Implementation

Sample({
  this.arn,
  this.type,
  this.url,
});