Uri constructor

Uri({
  1. String? description,
  2. String? id,
  3. String? kind,
  4. LocalizedString? localizedDescription,
  5. String? uri,
})

Implementation

Uri({
  this.description,
  this.id,
  this.kind,
  this.localizedDescription,
  this.uri,
});