LinkedRoute constructor

LinkedRoute({
  1. String? title,
  2. String? identifier,
  3. required ObjectReference route,
  4. String? description,
})

Implementation

LinkedRoute({
  this.title,
  String? identifier,
  required this.route,
  this.description,
}) : identifier = identifier ?? nanoid();