flags property

int flags

Flags.

Implementation

int get flags {
  final v = _flag(
    b00: firstName != null,
    b01: lastName != null,
    b02: about != null,
  );

  return v;
}