EntryRegistry.defaults constructor

EntryRegistry.defaults({
  1. void onLinkTap(
    1. String href
    )?,
  2. void onRelatedTap(
    1. String resourceKey,
    2. Object recordId
    )?,
})

Implementation

factory EntryRegistry.defaults({
  void Function(String href)? onLinkTap,
  void Function(String resourceKey, Object recordId)? onRelatedTap,
}) => EntryRegistry._({}, onLinkTap: onLinkTap, onRelatedTap: onRelatedTap);