radarr_flutter 3.0.1 copy "radarr_flutter: ^3.0.1" to clipboard
radarr_flutter: ^3.0.1 copied to clipboard

Facilitate the communication to and from Radarr's API, a movie collection manager for Usenet and BitTorrent users.

example/main.dart

import 'package:radarr_flutter/radarr_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 Radarr web GUI
  String key = '';
  Radarr api = Radarr(host: host, apiKey: key);
  // Run your commands
  // Example to get and print the title of the movie with identifier 1
  // api.movie.get(movieId: 1).then((data) => print(data.title));
  api.movie.getAll().then((data) => print(data.first.images!.first.url));
}
0
likes
150
points
11
downloads

Publisher

verified publishermeetdhanraj.rocks

Weekly Downloads

Facilitate the communication to and from Radarr's API, a movie collection manager for Usenet and BitTorrent users.

Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

dio, json_annotation

More

Packages that depend on radarr_flutter