Source constructor

const Source({
  1. required String source,
  2. String? description,
})

Returns a new Source instance.

Implementation

const Source({
  required this.source,
  this.description,
});