Hash constructor

const Hash({
  1. required String value,
  2. required int algo,
})

Implementation

const Hash({
  required this.value,
  required this.algo,
});