firstWithRelAndNoType method

Link? firstWithRelAndNoType(
  1. String rel
)

Implementation

Link? firstWithRelAndNoType(String rel) =>
    links.firstWhereOrNull((it) => it.rel.contains(rel) && it.type == null);