H5PRequestModel constructor

H5PRequestModel({
  1. required String refName,
  2. required String url,
  3. String? error,
  4. H5PFileStatus status = H5PFileStatus.undefined,
  5. int priority = 0,
  6. String? localPath,
})

Implementation

H5PRequestModel({
  required this.refName,
  required this.url,
  this.error,
  this.status = H5PFileStatus.undefined,
  this.priority = 0,
  this.localPath,
});