Id.fromString constructor

Id.fromString(
  1. String string, {
  2. int minLength = 4,
  3. int zero = 0x11111,
})

create from string value. Use to decode hash.

Implementation

Id.fromString(String string, {this.minLength = 4, this.zero = 0x11111})
    : value = 0 {
  value = _decode(string);
}