json_feed 0.1.1 copy "json_feed: ^0.1.1" to clipboard
json_feed: ^0.1.1 copied to clipboard

A Dart implementation of JSON Feed v1.1 with freezed/json_serializable codegen.

example/main.dart

import 'package:json_feed/json_feed.dart';
import 'dart:io';

void main() {
  final sample = File('example/sample_feed.json').readAsStringSync();
  final feed = parseJsonFeed(sample);
  print('Feed title: ${feed.title}');
  print('Item count: ${feed.items.length}');
}
0
likes
150
points
12
downloads

Publisher

verified publisherimprologic.com

Weekly Downloads

A Dart implementation of JSON Feed v1.1 with freezed/json_serializable codegen.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

freezed_annotation, json_annotation

More

Packages that depend on json_feed