SyncNodeEntry constructor

const SyncNodeEntry({
  1. required String nodeId,
  2. required int role,
  3. String? groupId,
  4. required int lastSeen,
  5. required int hopCount,
  6. String? displayName,
  7. int? batteryLevel,
  8. bool hasInternetAccess = false,
})

Implementation

const SyncNodeEntry({
  required this.nodeId,
  required this.role,
  this.groupId,
  required this.lastSeen,
  required this.hopCount,
  this.displayName,
  this.batteryLevel,
  this.hasInternetAccess = false,
});