lookup function

LookupRef lookup(
  1. String entityType,
  2. String attribute,
  3. dynamic value
)

Create a lookup reference for transactions

Implementation

LookupRef lookup(String entityType, String attribute, dynamic value) {
  return LookupRef(entityType: entityType, attribute: attribute, value: value);
}