Library constructor

Library({
  1. String? name,
  2. String? url,
  3. LibraryDownloads? downloads,
  4. Map<String, String>? natives,
  5. List<Rule>? rules,
  6. Extract? extract,
})

Implementation

Library({
  this.name,
  this.url,
  this.downloads,
  this.natives,
  this.rules,
  this.extract,
});