checkpoint

This commit is contained in:
Christien Rioux 2024-02-15 11:05:41 -07:00
parent 9b04fb1e4b
commit 34a861aa69
7 changed files with 1474 additions and 1717 deletions

View file

@ -135,6 +135,9 @@ class ValueSubkeyRange with _$ValueSubkeyRange {
required int high,
}) = _ValueSubkeyRange;
factory ValueSubkeyRange.single(int val) =>
ValueSubkeyRange(low: val, high: val);
factory ValueSubkeyRange.fromJson(dynamic json) =>
_$ValueSubkeyRangeFromJson(json as Map<String, dynamic>);
}