flagsValue property

int flagsValue

Implementation

int get flagsValue => flags.isEmpty
    ? 0
    : flags
        .map<int>((PdfSigFlags e) => 1 << e.index)
        .reduce((int a, int b) => a | b);