get<X> method

Stream<Attribute<X>> get<X>(
  1. JsonPath<X>? path
)

Implementation

Stream<Attribute<X>> get<X>(JsonPath<X>? path) =>
    where((attr) => attr.path == path).map((a) => a.cast<X>());