flags property

int get flags

Flags.

Implementation

int get flags {
  final v = _flag(
    b00: hasRecovery,
    b01: hasSecureValues,
    b02: hasPassword || currentAlgo != null || srpB != null || srpId != null,
    b03: hint != null,
    b04: emailUnconfirmedPattern != null,
    b05: pendingResetDate != null,
    b06: loginEmailPattern != null,
  );

  return v;
}