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