servicePosition property

String servicePosition

Implementation

String get servicePosition => _getAttribute<String>(kServicePosition, '');
void servicePosition=(String? x)

There are 3 possible values:

  • pre: the item happens before the service starts

  • post: the item happens after the service ends

  • during: the item happens during the service

pass null to remove key from attributes

Implementation

set servicePosition(String? x) => (x == null)
    ? _attributes.remove(kServicePosition)
    : _attributes[kServicePosition] = x;