isSubscribed property
Whether the local node is subscribed (actively participating) in this group. Only one group can be active at a time for NodeRole.group nodes.
Implementation
@override
late final GeneratedColumn<bool> isSubscribed = GeneratedColumn<bool>(
'is_subscribed',
aliasedName,
false,
type: DriftSqlType.bool,
requiredDuringInsert: false,
defaultConstraints: GeneratedColumn.constraintIsAlways(
'CHECK ("is_subscribed" IN (0, 1))',
),
defaultValue: const Constant(false),
);