hopCount property
How many relay hops away this node was last known to be. 0 = direct encounter, 1 = one hop away, etc.
Implementation
@override
late final GeneratedColumn<int> hopCount = GeneratedColumn<int>(
'hop_count',
aliasedName,
false,
type: DriftSqlType.int,
requiredDuringInsert: false,
defaultValue: const Constant(0),
);