sonarr_flutter 3.0.3 copy "sonarr_flutter: ^3.0.3" to clipboard
sonarr_flutter: ^3.0.3 copied to clipboard

Facilitate the communication to and from Sonarr's API, a smart PVR for newsgroup and bittorrent users.

example/main.dart

import 'package:sonarr_flutter/sonarr_flutter.dart';

void main() async {
  // The host must include the protocol
  // If required, the host should include the port and the base URL as well
  String host = '';
  // Your key can be fetched from the Sonarr web GUI
  String key = '';
  Sonarr api = Sonarr(host: host, apiKey: key);

  // var a=(api.series.getAllSeries());
  api.series.getSeries(seriesId: 1).then((data) => print(data));
}
0
likes
150
points
7
downloads

Publisher

verified publishermeetdhanraj.rocks

Weekly Downloads

Facilitate the communication to and from Sonarr's API, a smart PVR for newsgroup and bittorrent users.

Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

dio, intl, json_annotation, meta

More

Packages that depend on sonarr_flutter