Locator constructor

const Locator({
  1. required String href,
  2. required String type,
  3. String? title,
  4. Locations locations = const Locations(),
  5. LocatorText text = const LocatorText(),
})

Implementation

const Locator(
    {required this.href,
    required this.type,
    this.title,
    this.locations = const Locations(),
    this.text = const LocatorText()});