ResolvedHfFile constructor

const ResolvedHfFile({
  1. required String name,
  2. required String url,
  3. String? sha256,
  4. int? sizeBytes,
})

Implementation

const ResolvedHfFile({
  required this.name,
  required this.url,
  this.sha256,
  this.sizeBytes,
});