InternalLinkTypeBackground constructor

const InternalLinkTypeBackground({
  1. required String backgroundName,
  2. dynamic extra,
  3. int? clientId,
})

The link is a link to a background. Call searchBackground with the given background name to process the link

Implementation

const InternalLinkTypeBackground({
  required this.backgroundName,
  this.extra,
  this.clientId,
});