displayId property

String displayId

Implementation

String get displayId => isFull
    ? full!.id
    : (start != null && end != null
        ? "${start!.id}+${end!.id}"
        : (start ?? end)!.id);