find method
Returns the formula spec with id, or null.
Implementation
@override
Future<FormulaSpec?> find(FormulaId id) async {
final json = _store.readObject(id.value);
return json == null ? null : FormulaSpec.fromJson(json);
}
Returns the formula spec with id, or null.
@override
Future<FormulaSpec?> find(FormulaId id) async {
final json = _store.readObject(id.value);
return json == null ? null : FormulaSpec.fromJson(json);
}